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 : a r r a y _ 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 )
*/
/* 基 于 环 形 数 组 实 现 的 队 列 */
class ArrayQueue {
private var nums : [ Int ] // 用 于 存 储 队 列 元 素 的 数 组
private var front = 0 // 队 首 指 针 , 指 向 队 首 元 素
private var queSize = 0 // 队 列 长 度
init ( capacity : Int ) {
// 初 始 化 数 组
nums = Array ( repeating : 0 , count : capacity )
}
/* 获 取 队 列 的 容 量 */
func capacity ( ) -> Int {
nums . count
}
/* 获 取 队 列 的 长 度 */
func size ( ) -> Int {
queSize
}
/* 判 断 队 列 是 否 为 空 */
func isEmpty ( ) -> Bool {
queSize = = 0
}
/* 入 队 */
func push ( num : Int ) {
if size ( ) = = capacity ( ) {
print ( " 队列已满 " )
return
}
// 计 算 尾 指 针 , 指 向 队 尾 索 引 + 1
// 通 过 取 余 操 作 , 实 现 r e a r 越 过 数 组 尾 部 后 回 到 头 部
let rear = ( front + queSize ) % capacity ( )
// 将 n u m 添 加 至 队 尾
nums [ rear ] = num
queSize += 1
}
/* 出 队 */
@ discardableResult
func pop ( ) -> Int {
let num = peek ( )
// 队 首 指 针 向 后 移 动 一 位 , 若 越 过 尾 部 则 返 回 到 数 组 头 部
front = ( front + 1 ) % capacity ( )
queSize -= 1
return num
}
/* 访 问 队 首 元 素 */
func peek ( ) -> Int {
if isEmpty ( ) {
fatalError ( " 队列为空 " )
}
return nums [ front ]
}
/* 返 回 数 组 */
func toArray ( ) -> [ Int ] {
// 仅 转 换 有 效 长 度 范 围 内 的 列 表 元 素
var res = Array ( repeating : 0 , count : queSize )
for ( i , j ) in sequence ( first : ( 0 , front ) , next : { $0 < self . queSize - 1 ? ( $0 + 1 , $1 + 1 ) : nil } ) {
res [ i ] = nums [ j % capacity ( ) ]
}
return res
}
}
@ main
enum _ArrayQueue {
/* D r i v e r C o d e */
static func main ( ) {
/* 初 始 化 队 列 */
let capacity = 10
let queue = ArrayQueue ( capacity : capacity )
/* 元 素 入 队 */
queue . push ( num : 1 )
queue . push ( num : 3 )
queue . push ( num : 2 )
queue . push ( num : 5 )
queue . push ( num : 4 )
print ( " 队列 queue = \( queue . toArray ( ) ) " )
/* 访 问 队 首 元 素 */
let peek = queue . peek ( )
print ( " 队首元素 peek = \( peek ) " )
/* 元 素 出 队 */
let pop = queue . pop ( )
print ( " 出队元素 pop = \( pop ) ,出队后 queue = \( queue . toArray ( ) ) " )
/* 获 取 队 列 的 长 度 */
let size = queue . size ( )
print ( " 队列长度 size = \( size ) " )
/* 判 断 队 列 是 否 为 空 */
let isEmpty = queue . isEmpty ( )
print ( " 队列是否为空 = \( isEmpty ) " )
/* 测 试 环 形 数 组 */
for i in 0 . . < 10 {
queue . push ( num : i )
queue . pop ( )
print ( " 第 \( i ) 轮入队 + 出队后 queue = \( queue . toArray ( ) ) " )
}
}
}