X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fpriority-queue.ts;h=b4d70b5ea8424c444570ac8acc4b03d2e33d4530;hb=686b339ec9cdce9d5fcaa92ae3b04cbc0b364f42;hp=64b5a9248a804130107b810c412bf4c978ae8cd9;hpb=5d9133ae9ef83c5f69e26daf8dcfea584884d9c4;p=poolifier.git diff --git a/src/priority-queue.ts b/src/priority-queue.ts index 64b5a924..b4d70b5e 100644 --- a/src/priority-queue.ts +++ b/src/priority-queue.ts @@ -20,25 +20,37 @@ export interface PriorityQueueNode { export class PriorityQueue { private nodeArray!: Array> /** Prioritized bucket size. */ - private readonly k: number + private readonly bucketSize: number /** The size of the priority queue. */ public size!: number /** The maximum size of the priority queue. */ public maxSize!: number + /** + * The number of filled prioritized buckets. + */ + public get buckets (): number { + return this.bucketSize === Number.POSITIVE_INFINITY + ? 1 + : Math.trunc(this.nodeArray.length / this.bucketSize) + } + /** * Constructs a priority queue. * - * @param k - Prioritized bucket size. @defaultValue Infinity + * @param bucketSize - Prioritized bucket size. @defaultValue Number.POSITIVE_INFINITY */ - public constructor (k = Infinity) { - if (k !== Infinity && !Number.isSafeInteger(k)) { - throw new TypeError('k must be an integer') + public constructor (bucketSize = Number.POSITIVE_INFINITY) { + if ( + bucketSize !== Number.POSITIVE_INFINITY && + !Number.isSafeInteger(bucketSize) + ) { + throw new TypeError('bucketSize must be an integer') } - if (k < 1) { - throw new RangeError('k must be greater than or equal to 1') + if (bucketSize < 1) { + throw new RangeError('bucketSize must be greater than or equal to 1') } - this.k = k + this.bucketSize = bucketSize this.clear() } @@ -52,9 +64,9 @@ export class PriorityQueue { public enqueue (data: T, priority?: number): number { priority = priority ?? 0 const startIndex = - this.k === Infinity || this.nodeArray.length / this.k < 1 + this.bucketSize === Number.POSITIVE_INFINITY ? 0 - : Math.trunc(this.nodeArray.length / this.k) * this.k + : this.buckets * this.bucketSize let inserted = false for (let index = startIndex; index < this.nodeArray.length; index++) { if (this.nodeArray[index].priority > priority) { @@ -76,9 +88,9 @@ export class PriorityQueue { * @returns The dequeued data or `undefined` if the priority queue is empty. */ public dequeue (bucket = 0): T | undefined { - if (this.k !== Infinity && bucket > 0) { + if (this.bucketSize !== Number.POSITIVE_INFINITY && bucket > 0) { while (bucket > 0) { - const index = bucket * this.k + const index = bucket * this.bucketSize // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition if (this.nodeArray[index] != null) { --this.size @@ -87,9 +99,7 @@ export class PriorityQueue { --bucket } } - if (this.size > 0) { - --this.size - } + this.decrementSize() return this.nodeArray.shift()?.data } @@ -156,4 +166,16 @@ export class PriorityQueue { } return this.size } + + /** + * Decrements the size of the priority queue. + * + * @returns The new size of the priority queue. + */ + private decrementSize (): number { + if (this.size > 0) { + --this.size + } + return this.size + } }