diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-08-14 08:22:23 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-14 08:22:23 +0900 |
| commit | 464faf267393e3c8021ed455c6c51bd1bc5516b3 (patch) | |
| tree | c75b13251bfafb7456adb6db7ce27415ea74bc80 /src/misc | |
| parent | Merge branch 'master' of https://github.com/syuilo/misskey (diff) | |
| parent | Use deque instead of linked list (diff) | |
| download | misskey-464faf267393e3c8021ed455c6c51bd1bc5516b3.tar.gz misskey-464faf267393e3c8021ed455c6c51bd1bc5516b3.tar.bz2 misskey-464faf267393e3c8021ed455c6c51bd1bc5516b3.zip | |
Merge pull request #2200 from syuilo/use-deque
Use deque instead of linked list
Diffstat (limited to 'src/misc')
| -rw-r--r-- | src/misc/queue.ts | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/misc/queue.ts b/src/misc/queue.ts deleted file mode 100644 index 410878ba8b..0000000000 --- a/src/misc/queue.ts +++ /dev/null @@ -1,33 +0,0 @@ -type Node<T> = { value: T, next: Node<T> }; - -export default class Queue<T> { - private top: Node<T> = null; - private rear: Node<T> = null; - public length: number = 0; - - public push(value: T): void { - const node: Node<T> = { value, next: null }; - if (this.top === null) { - this.top = node; - this.rear = node; - } else { - this.rear.next = node; - this.rear = node; - } - this.length++; - } - - public pop(): void { - this.top = this.top.next; - if (this.top == null) this.rear = null; - this.length--; - } - - public toArray(): T[] { - const arr: T[] = Array<T>(this.length); - for (let node = this.top, i = 0; node !== null; node = node.next, i++) { - arr[i] = node.value; - } - return arr; - } -} |