Update queue.ts

This commit is contained in:
Yudong Jin 2022-12-05 22:55:11 +08:00 committed by GitHub
parent 0c5e2c45c8
commit 4c2ec0079f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,8 +5,8 @@
*/
/* 初始化队列 */
// Typescript 没有内置的队列,可以把 Array 当作队列来使用
// 注意:虽然Typescript有shift()函数可以去除队首元素但是时间复杂度是O(n)的。
// TypeScript 没有内置的队列,可以把 Array 当作队列来使用
// 注意:由于是数组,所以 shift() 的时间复杂度是 O(n)
const queue: number[] = [];
/* 元素入队 */
@ -20,6 +20,7 @@ queue.push(4);
const peek = queue[0];
/* 元素出队 */
// O(n)
const poll = queue.shift();
/* 获取队列的长度 */