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.
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.
/* *
* F i l e : q u e u e . s w i f t
* C r e a t e d T i m e : 2 0 2 3 - 0 1 - 1 1
* A u t h o r : n u o m i 1 ( n u o m i 1 @ q q . c o m )
*/
@ main
enum Queue {
/* D r i v e r C o d e */
static func main ( ) {
/* 初 始 化 队 列 */
// S w i f t 没 有 内 置 的 队 列 类 , 可 以 把 A r r a y 当 作 队 列 来 使 用
var queue : [ Int ] = [ ]
/* 元 素 入 队 */
queue . append ( 1 )
queue . append ( 3 )
queue . append ( 2 )
queue . append ( 5 )
queue . append ( 4 )
print ( " 队列 queue = \( queue ) " )
/* 访 问 队 首 元 素 */
let peek = queue . first !
print ( " 队首元素 peek = \( peek ) " )
/* 元 素 出 队 */
// 使 用 A r r a y 模 拟 时 p o p 的 复 杂 度 为 O ( n )
let pool = queue . removeFirst ( )
print ( " 出队元素 pop = \( pool ) ,出队后 queue = \( queue ) " )
/* 获 取 队 列 的 长 度 */
let size = queue . count
print ( " 队列长度 size = \( size ) " )
/* 判 断 队 列 是 否 为 空 */
let isEmpty = queue . isEmpty
print ( " 队列是否为空 = \( isEmpty ) " )
}
}