Update queue.ts
This commit is contained in:
parent
0c5e2c45c8
commit
4c2ec0079f
@ -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();
|
||||
|
||||
/* 获取队列的长度 */
|
||||
@ -28,4 +29,4 @@ const size = queue.length;
|
||||
/* 判断队列是否为空 */
|
||||
const empty = queue.length === 0;
|
||||
|
||||
export { };
|
||||
export { };
|
||||
|
Loading…
Reference in New Issue
Block a user