qewe
v1.1.1
Published
Opinionated, type-safe, zero-dependency max/min priority queue.
Downloads
15
Readme
qewe
qewe is an opinionated, type-safe, zero-dependency max/min priority queue for JavaScript and TypeScript projects.
Installation
Add qewe to your project using your favorite package manager:
$ yarn add qewe
You can also import qewe with a script tag via unpkg:
<script src="//unpkg.com/qewe" type="text/javascript"></script>
Usage
import { Qewe } from 'qewe';
const queue = new Qewe();
queue.enqueue('hello', 1);
queue.enqueue('world', 2);
console.log(...queue); // [ 'world', 'hello' ]
console.log(queue.size); // 2
const dequeued = queue.dequeue();
console.log(dequeued); // 'world'
console.log(queue.size); // 1
Enqueueing
A Qewe
instance's queue is a list of QeweEntry
instances. The recommended way to enqueue new values is to use the enqueue
method, passing in a value and a priority:
const myQueue = new Qewe();
myQueue.enqueue('my-value', 1);
console.log(myQueue.queue); // [ QeweEntry { value: 'my-value', priority: 1 } ]
If the priority of an entry can be inferred when enqueue is called then you can omit the priority
argument and instead pass an inferValuePriority
function to the constructor:
const myQueue = new Qewe<string>({
inferValuePriority: (value) => value.length,
});
myQueue.enqueue('hello');
myQueue.enqueue('qewe');
console.log(myQueue.queue); // [ QeweEntry { value: 'hello', priority: 5 }, QeweEntry { value: 'qewe', priority: 4 } ]
Alternatively, you can create a QeweEntry
instance yourself - either by using the new QeweEntry
constructor or the createEntry
method on a Qewe
instance - and pass it to the enqueue
method. This can be useful if you will need to requeue the same entry later.
const myQueue = new Qewe();
const firstEntry = new QeweEntry('my-value', 1);
const secondEntry = queue.createEntry('my-other-value', 2);
myQueue.enqueue(firstEntry);
myQueue.enqueue(secondEntry);
console.log(myQueue.queue); // [ QeweEntry { value: 'my-other-value', priority: 2 }, QeweEntry { value: 'my-value', priority: 1 } ]
Queue Behavior
Instances which have an empty queue will throw an error when a dequeue
or dequeueEnd
is attempted. It is recommended that you expect this error and handle it accordingly:
const queue = new Qewe();
try {
const value = queue.dequeue();
} catch {
// queue is empty - do something else
}
Alternatively, you can check if the queue is empty before you attempt to dequeue:
const queue = new Qewe();
if (!queue.isEmpty()) {
const value = queue.dequeue();
} else {
// queue is empty - do something else
}
Note: the peek
and peekEnd
properties of an instance do not throw an error when the queue is empty. Instead, they return undefined
.
Qewe
API
Constructor Options
You can customize a Qewe instance by passing a QeweOptions
object to the constructor:
class Qewe<T>(options?: QeweOptions<T>);
type QueueType = 'min' | 'max';
interface QeweOptions<T> {
queueType?: QueueType;
maxSize?: number;
inferValuePriority?: (value: T) => number;
initialEntries?: QeweEntry<T>[];
initialValues?: T[];
}
queueType: QueueType
Indicate whether the queue should be a minimum or maximum priority queue.
queueType
ismax
by default.maxSize: number
Specify a maximum number of entries that can exist in the instance's priority queue.
maxSize
isInfinity
by default.inferValuePriority: (value: T) => number
Define a function that will be used to infer the priority of a value when an entry is created. This can be useful when the priority is something that can be derived from the value itself.
By providing this function you can omit the
priority
argument from theenqueue
andcreateEntry
.inferValuePriority
isundefined
by default, which means you always have to provide the priority when adding a value to the queue.initialEntries: QeweEntry<T>
Specify an array of
QeweEntry
instances to initialize the instance's priority queue. This usesQewe.prototype.enqueue
to add each entry.initialValues: T[] | QeweEntry<T>[]
Provide an array of values to initialize the queue with. This uses
Qewe.prototype.enqueue
to add each value.Note: The instance must also have an
inferValuePriority
function so that it can infer the priority of each value. If you cannot provide aninferValuePriority
function you should instead use theinitialEntries
option to initialize the queue.
Instance Properties
// get the amount of entries of the queue.
Qewe.prototype.size: number;
// get the maximum amount of entries that the queue can hold.
Qewe.prototype.maxSize: number;
// get the current queue state.
Qewe.prototype.queue: QeweEntry<T>[];
// get the type (minimum or maximum) of the queue.
Qewe.prototype.queueType: QueueType;
// get the function used to infer the priority of a value to be enqueued
Qewe.prototype.inferValuePriority: ((value: T) => number) | null;
Instance Methods
// returns a generator that yields the values in the queue. synonymous with Qewe.prototype.values.
Qewe.prototype[Symbol.Iterator](): T[];
// returns a generator that yields the queue's values.
Qewe.prototype.values(): Generator<T>;
// returns a generator that yields the queue's entries.
Qewe.prototype.entries(): Generator<QeweEntry<T>>;
// returns whether or not the queue contains a given value.
Qewe.prototype.contains(value: T): boolean;
// returns whether or not the queue is empty.
Qewe.prototype.isEmpty(): boolean;
// create a new entry which can be passed to `enqueue`. returns the entry.
// NOTE: the priority argument is only optional when when
// `options.inferValuePriority` is defined for the instance.
Qewe.prototype.createEntry(value: T, priority?: number): QeweEntry<T>;
// add a new value to the queue. returns the new queue entry.
// NOTE: if you are using the value/priority signature then the priority argument
// is only optional when when `options.inferValuePriority` is defined for the instance.
Qewe.prototype.enqueue(entry: QeweEntry<T>): QeweEntry<T>;
Qewe.prototype.enqueue(value: T, priority?: number): QeweEntry<T>;
// returns the first value in the queue (without removing its entry, like dequeue does).
Qewe.prototype.peek(): T | undefined;
// returns the last value in the queue (without removing its entry, like dequeueEnd does).
Qewe.prototype.peekEnd(): T | undefined;
// removes the first entry from the queue and returns its value.
Qewe.prototype.dequeue(): T;
// removes the last entry from the queue and returns its value.
Qewe.prototype.dequeueEnd(): T;
// removes a specified value or entry from the queue and returns the removed entry.
Qewe.prototype.remove(value: T): QeweEntry<T>;
Qewe.prototype.remove(entry: QeweEntry<T>): QeweEntry<T>;
// removes all entries from the queue and returns them.
Qewe.prototype.clear(): QeweEntry<T>[];
Errors
All errors thrown by a Qewe instance are members of the QeweError
enum, which can be imported from the package.
| Error | Description |
| ------------------------------- | ------------------------------------------------------------------------------------------------- |
| QeweError.NoPriorityValue
| Cannot enqueue - no priority value, or function to infer an entry's priority value, was provided. |
| QeweError.MaxQueueSizeReached
| Cannot enqueue - the queue is already at its max size. |
| QeweError.EmptyQueue
| Cannot dequeue - the queue is empty. |
| QeweError.NotFound
| Cannot remove - the value was not found in the queue. |
QeweEntry
API
Constructor Arguments
A new QeweEntry
instance takes two arguments in its constructor:
class QeweEntry<T>(value: T, priority: number);
value: T
The value of the entry.
priority: number
The priority of the entry.
Instance Properties
// the value of the entry
QeweEntry.prototype.value: T;
// the priority of the entry
QeweEntry.prototype.priority: number;