X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fdeque.ts;h=0d55f5b665115b3c5efc2580fcdb56562926b340;hb=91d26ce3eebccfe651b161329ce2185681f56ac1;hp=fe82a79896a08757e3f261b66aa364b1407ab6e9;hpb=c63a35a04c190989be80f9218d97e0aca739475e;p=poolifier.git diff --git a/src/deque.ts b/src/deque.ts index fe82a798..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 {