Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/heap-data-structure/pairing-heap
:cherries: Pairing heap data structure for JavaScript
https://github.com/heap-data-structure/pairing-heap
agpl amortized computer-science data-structures heaps javascript meldable-heaps pairing-heap unknown-running-time
Last synced: about 6 hours ago
JSON representation
:cherries: Pairing heap data structure for JavaScript
- Host: GitHub
- URL: https://github.com/heap-data-structure/pairing-heap
- Owner: heap-data-structure
- License: agpl-3.0
- Created: 2017-01-17T01:58:28.000Z (almost 8 years ago)
- Default Branch: main
- Last Pushed: 2024-10-24T00:37:57.000Z (22 days ago)
- Last Synced: 2024-10-24T14:52:59.623Z (22 days ago)
- Topics: agpl, amortized, computer-science, data-structures, heaps, javascript, meldable-heaps, pairing-heap, unknown-running-time
- Language: JavaScript
- Homepage: https://heap-data-structure.github.io/pairing-heap
- Size: 3.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:cherries: [@heap-data-structure/pairing-heap](https://heap-data-structure.github.io/pairing-heap)
==
Pairing heap data structure for JavaScript.
See [docs](https://heap-data-structure.github.io/pairing-heap/index.html).
Parent is [@heap-data-structure](https://github.com/heap-data-structure/about).```js
import {increasing} from '@total-order/primitive';
import {PairingHeap} from '@heap-data-structure/pairing-heap';
let heap = new PairingHeap( increasing ) ;
```[![License](https://img.shields.io/github/license/heap-data-structure/pairing-heap.svg)](https://raw.githubusercontent.com/heap-data-structure/pairing-heap/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@heap-data-structure/pairing-heap.svg)](https://www.npmjs.org/package/@heap-data-structure/pairing-heap)
[![Tests](https://img.shields.io/github/actions/workflow/status/heap-data-structure/pairing-heap/ci.yml?branch=main&event=push&label=tests)](https://github.com/heap-data-structure/pairing-heap/actions/workflows/ci.yml?query=branch:main)
[![Dependencies](https://img.shields.io/librariesio/github/heap-data-structure/pairing-heap.svg)](https://github.com/heap-data-structure/pairing-heap/network/dependencies)
[![GitHub issues](https://img.shields.io/github/issues/heap-data-structure/pairing-heap.svg)](https://github.com/heap-data-structure/pairing-heap/issues)
[![Downloads](https://img.shields.io/npm/dm/@heap-data-structure/pairing-heap.svg)](https://www.npmjs.org/package/@heap-data-structure/pairing-heap)[![Code issues](https://img.shields.io/codeclimate/issues/heap-data-structure/pairing-heap.svg)](https://codeclimate.com/github/heap-data-structure/pairing-heap/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/heap-data-structure/pairing-heap.svg)](https://codeclimate.com/github/heap-data-structure/pairing-heap/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/heap-data-structure/pairing-heap/main.svg)](https://codecov.io/gh/heap-data-structure/pairing-heap)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/heap-data-structure/pairing-heap.svg)](https://codeclimate.com/github/heap-data-structure/pairing-heap/trends/technical_debt)
[![Documentation](https://heap-data-structure.github.io/pairing-heap/badge.svg)](https://heap-data-structure.github.io/pairing-heap/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/@heap-data-structure/pairing-heap)](https://bundlephobia.com/result?p=@heap-data-structure/pairing-heap)## :scroll: References
- [Improved bounds for multipass pairing heaps and path-balanced binary search trees](https://arxiv.org/abs/1806.08692)