X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fdeque.ts;h=0d55f5b665115b3c5efc2580fcdb56562926b340;hb=8876cdb81fda8f3245a463d6202c88bb99569a23;hp=723f1a4950688bcea0244e83a8f764b02cdf5a38;hpb=410724041bab556be1385c56f9a32e5030f6f2cf;p=poolifier.git diff --git a/src/deque.ts b/src/deque.ts index 723f1a49..0d55f5b6 100644 --- a/src/deque.ts +++ b/src/deque.ts @@ -1,19 +1,15 @@ -// Copyright Jerome Benoit. 2023. All Rights Reserved. +// Copyright Jerome Benoit. 2023-2024. All Rights Reserved. /** - * Node. + * Linked list node interface. * - * @typeParam T - Type of node data. + * @typeParam T - Type of linked list node data. * @internal */ -export class Node { - public data: T - public next?: Node - public prev?: Node - - public constructor (data: T) { - this.data = data - } +export interface ILinkedListNode { + data: T + next?: ILinkedListNode + prev?: ILinkedListNode } /** @@ -24,8 +20,8 @@ export class Node { * @internal */ export class Deque { - private head?: Node - private tail?: Node + private head?: ILinkedListNode + private tail?: ILinkedListNode /** The size of the deque. */ public size!: number /** The maximum size of the deque. */ @@ -42,7 +38,7 @@ export class Deque { * @returns The new size of the queue. */ public push (data: T): number { - const node = new Node(data) + const node: ILinkedListNode = { data } if (this.tail == null) { this.head = this.tail = node } else { @@ -59,7 +55,7 @@ export class Deque { * @returns The new size of the queue. */ public unshift (data: T): number { - const node = new Node(data) + const node: ILinkedListNode = { data } if (this.head == null) { this.head = this.tail = node } else { @@ -79,7 +75,7 @@ export class Deque { return } const tail = this.tail - this.tail = (this.tail as Node).prev + this.tail = this.tail?.prev if (this.tail == null) { delete this.head } else { @@ -106,7 +102,7 @@ export class Deque { delete this.head.prev } --this.size - return head?.data + return head.data } /** @@ -155,7 +151,7 @@ export class Deque { value: node.data, done: false } - node = node.next as Node + node = node.next return ret } } @@ -183,7 +179,7 @@ export class Deque { value: node.data, done: false } - node = node.prev as Node + node = node.prev return ret } }