You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hello-algo/zh-hant/codes/swift/chapter_stack_and_queue/stack.swift

40 lines
1000 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* File: stack.swift
* Created Time: 2023-01-09
* Author: nuomi1 (nuomi1@qq.com)
*/
@main
enum Stack {
/* Driver Code */
static func main() {
/* */
// Swift Array 使
var stack: [Int] = []
/* */
stack.append(1)
stack.append(3)
stack.append(2)
stack.append(5)
stack.append(4)
print("堆疊 stack = \(stack)")
/* */
let peek = stack.last!
print("堆疊頂元素 peek = \(peek)")
/* */
let pop = stack.removeLast()
print("出堆疊元素 pop = \(pop),出堆疊後 stack = \(stack)")
/* */
let size = stack.count
print("堆疊的長度 size = \(size)")
/* */
let isEmpty = stack.isEmpty
print("堆疊是否為空 = \(isEmpty)")
}
}