0.3.1 • Published 11 years ago

pqueue v0.3.1

Weekly downloads
28
License
-
Repository
github
Last release
11 years ago

Priority Queue (NodeJS)

It's a simple implementation of a PriorityQueue for NodeJS. As the code is JavaScript it could be used on the browser without any trouble.

The basic usage is to push() elements and give them a priority to be used into the queue. You can also set a custom compare() function and a limit of elements to be held into the queue.

More examples can be found into the tests folder.

queue = new PriorityQueue();
queue.push("Most important note", 99);
queue.push("Important note", 50);
queue.push("Silly notice", 1);

x = queue.top(); // Most important note
x = queue.top(); // Important note
x = queue.top(); // Silly notice
x = queue.top(); // undefined
0.3.1

11 years ago

0.3.0

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago