deno.land / x / masx200_leetcode_test@10.6.5 / implement-stack-using-queues / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export default class MyStack { #queue: number[] = [];
push(x: number): void { const length = this.#queue.length; this.#queue.push(x); for (let i = 0; i < length; i++) { const first = this.#queue.shift(); if (typeof first == "undefined") { throw new Error("queue is empty"); } this.#queue.push(first); } }
pop(): number { const res = this.#queue.shift(); if (typeof res == "undefined") { throw new Error("queue is empty"); } return res; }
top(): number { return this.#queue[0]; }
empty(): boolean { return this.#queue.length === 0; }}
masx200_leetcode_test

Version Info

Tagged at
a year ago