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 🙏

© 2024 – Pkg Stats / Ryan Hefner

binomial-heap

v1.3.0

Published

No dependency binomial heap, compatible with typescript, can have custom compare function

Downloads

28

Readme

binomial-heap

No dependency binomial heap, compatible with typescript, can have custom compare function.

Can merge and push different primitive types into the heap, after which it will do automatic sanity check and restructure itself.

Algoritm costs should be standard for binomial heap. If not, please consider adding a task / pull request.

This heap is fully typed, including multi-type heaps. Heaps which contain strings, numbers and/or Dates do not need custom compare function. Heaps which contain objects have to use custom compare.

Examples (from unit tests):

Basic numerical heap sort:


expect(
    heap([1, 2, 3, -3, 5, 10, 22, -1, 0, 0, 0, 5]).sort()
).toEqual([1, 2, 3, -3, 5, 10, 22, -1, 0, 0, 0, 5].sort((a, b) => a - b));

Type combination heap sort:


const dates = [
    new Date(2020, 6, 12, 3).getTime(),
    new Date(2020, 6, 12, 6).toISOString(),
    new Date(2020, 6, 12, 7),
    new Date(2020, 6, 12, 2).getTime(),
    new Date(2020, 6, 12, 11),
    new Date(2020, 6, 12, 6).toISOString(),
];
expect(heap(dates).sort()).toEqual(dates.sort((a, b) => new Date(a).getTime() - new Date(b).getTime()));

Can merge two types of variables / two heaps of different types (Sanity check is O(n), won't happen unless necessary):


expect(
    heap(['1', '2', 3, '11', 11, 'Hello', '0', 0]).sort().map(item => item.toString())
).toEqual(['1', '2', 3, '11', 11, 'Hello', '0', 0].sort(
    (a, b) => a.toString().localeCompare(b.toString())
).map(item => item.toString()));

expect(
    heap(['1', '2', '11', 'Hello', '0']).merge(heap([0, 3, 11])).sort().map(item => item.toString())
).toEqual(['1', '2', 3, '11', 11, 'Hello', '0', 0].sort(
    (a, b) => a.toString().localeCompare(b.toString())
).map(item => item.toString()));

The heap also supports these operations: pop (deletes minimum), push, search, delete, compare (sets up a new compare function).

Examples of compare and search/delete (both search and delete accept a function or item as an argument):


const test = heap([1, 2, 3, -3]);
expect(test.items).toEqual([
    [-3, 3, 1, 2]
]);
expect(test.compare((a, b) => Math.abs(a) - Math.abs(b)).items).toEqual([
    [1, 2, -3, 3]
]);

const dates = [
    new Date(2020, 6, 12, 3).getTime(),
    new Date(2020, 6, 12, 6).toISOString(),
    new Date(2020, 6, 12, 7),
    new Date(2020, 6, 12, 2).getTime(),
    new Date(2020, 6, 12, 11),
    new Date(2020, 6, 12, 6).toISOString(),
];
expect(heap(dates).search(item => new Date(item).getTime() === dates[0])).toEqual(dates[0]);

const dates = [
    new Date(2020, 6, 12, 3).getTime(),
    new Date(2020, 6, 12, 6).toISOString(),
    new Date(2020, 6, 12, 7),
    new Date(2020, 6, 12, 2).getTime(),
    new Date(2020, 6, 12, 11),
    new Date(2020, 6, 12, 6).toISOString(),
];
expect(heap(dates).delete(item => new Date(item).getTime() === dates[0])).toEqual(dates[0]);

Changes since 1.0.1

Binomial heap now has an inner representation of tree instead of array. Done this in order to fix linear cost merge operation.

Changes since 1.1.0

Binomial heap now can be converted into a promisified heap, returning promises for each operation.

Also, fixed a bug in pop function. Added appropriate unit tests.

Changes since 1.2.0

Package now extends array interface to allow you to convert it to heap.

Changes since 1.3.0

Package now allows for a short-hand definition of compare function (one parameter is enough, will be converted to: (a, b) => fn(a) - fn(b)).

Example


const array = [5, -1, 0, 3, -2];
const absSort = (a: number, b: number) => Math.abs(a) - Math.abs(b);
expect(heap(array, Math.abs).sort()).toEqual(array.sort(absSort));
expect(heap(array).compare(Math.abs).sort()).toEqual(array.sort(absSort));

Footer

If you encounter any bugs, or have ideas for improvement, do not hesitate to add a task or a pull request.