lyte

A small and mighty suite of data structures in JavaScript.

Usage no npm install needed!

<script type="module">
  import lyte from 'https://cdn.skypack.dev/lyte';
</script>

README

LytePQ · npm version license PRs welcome

A small and mighty priority queue in JavaScript.

Perks

✅ Packed with all basic priority queue operations.
🚀 Unopinionated functionality exposure - you decide how to use LytePQ.
💻 Perfect for competitive programming, online tests, interviews, etc. Dijkstra's in JS made easy!
📔 Comprehensive JSDoc annotations and intellisense.
🔭 TypeScript support.

Getting Started

Install with either Yarn or NPM via yarn add lytepq or npm add lytepq.

Import into your project in the following ways.

import LytePQ from "lytepq"; // ES

const LytePQ = require("lytepq").default; // CommonJS

Demo

// LytePQ is a min priority queue by default
const minQ = new LytePQ();
pq.push(2), pq.push(1), pq.push(3);
const smallest = pq.peek(); // returns the smallest item - 1

// creates a max priority queue with a custom comparator function
const maxQ = new LytePQ([2, 3, -1], (a, b) => b - a);
const largest = pq.pop(); // removes and returns the largest item - 3

// queue items can be objects with a matching comparator function
const objectQ = new LytePQ(
  [
    [0, 8],
    [1, 2],
    [2, 7],
  ],
  (a, b) => a[1] - b[1]
);
const smallestObj = objectQ.pop(); // [1, 2]

Contributing

Issues and pull requests are welcome! Contact me on Twitter if needed.

Credits

This library took inspiration from Vladimir Agafonkin's tinyqueue.