npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

phpq

v0.1.0

Published

Pairing heap priority queue

Downloads

10

Readme

Pairing Heap Priority Queue

Implementation of a Priority Queue based on a Pairing Heap.

Platform Support

Supports Node version (4.0.0) and the following browsers:

| Android | Firefox | Chrome | IE | Opera | Safari | | ------- | ------- | ------ | -- | ----- | ------ | | All | 36 | 21 | 11 | All | 5.1 |

Usage

Install the package from NPM:

npm i -S phpq

Import the package and use it, see the API for details.

import { PriorityQueue } from 'phpq';

const queue = new PriorityQueue((a, b) => a - b);
queue.push(1);
queue.push(2);
queue.push(3);

API

new PriorityQueue(comparator)

Constructs a new PriorityQueue with the provided comparator function. The comparator function is in the form (a, b) => N, where:

  • N < 0: a is higher priority than b, a comes first.
  • N = 0: a is equal priority to b.
  • N > 0: a is lower priority than b, b comes first.
const queue = new PriorityQueue((a, b) => a.priority - b.priority)

queue.push(it[, ..., itN])

Pushes the elements it through itN to the PriorityQueue and returns the updated length of the PriorityQueue.

queue.push({ key: 'A', priority: 10 })

queue.pop()

Returns and removes the highest priority element from the PriorityQueue.

console.log(queue.pop().key); // 'A'
console.log(queue.pop()); // undefined

queue.peek()

Returns the highest priority element from the PriorityQueue without removing it.

console.log(queue.peek().key); // 'A'
console.log(queue.peek().key); // 'A'

queue.length

The length or number of items on the PriorityQueue.

console.log(queue.length); // 0
queue.push({ key: 'A', priority: 10 });
console.log(queue.length); // 1

Benchmarks

The implementation has been optimized for performance but does not perform as well as binary heap implementations, this implementation should, in theory, outperform binary heap implementations for inserts but the extra structural complexity (i.e. a binary heap can be implemented as a single array, whereas pairing heap is implemented as nested arrays) and resultant object allocations handicaps overall performance.

The benchmarks compare operations against a fast implementation of a binary heap bhpq:

phpq push and pop number x 4,038 ops/sec ±1.92% (94 runs sampled)
phpq push and pop object x 2,791 ops/sec ±0.96% (92 runs sampled)
bhpq push and pop number x 13,979 ops/sec ±0.48% (96 runs sampled)
bhpq push and pop object x 3,448 ops/sec ±1.24% (92 runs sampled)