Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

code42day-binary-heap

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

code42day-binary-heap

Binary heap

  • 2.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
318
decreased by-17.83%
Maintainers
1
Weekly downloads
 
Created
Source

NPM version Build Status Dependency Status

binary-heap

Binary heap

Installation

$ npm install --save conde42day-binary-heap

Usage

  var h = heap();
  h.push(5);
  h.push(2);

  h.pop(); // 2
  h.pop(); // 5
  h.pop(); // undefined

API

heap(fn, heapIndex)

fn - compare function, by default numerical comparison resulting in min-heap, see tests for max-heap example heapIndex - if truthy, heap will use item's _heapIndex property to track its position on the heap, it speeds up item removals, but can slow down operations for smaller heaps

push(item)

adds item to the heap

pop()

pops item from the top of the heap, rebalances the head

peek()

returns the top of the heap, without removing it

rebuild(data)

rebuilds heap to satisfy comparison constraint, if data is provided it is used to reinitialize the heap

popAndRebuild()

pop and immediately rebuild the heap, implemented in a slightly more efficient manner than separate pop() and rebuild()- useful when heap needs to be rebalanced after top is removed, because some of the items might have changed their relative weights

License

MIT © code42day

Keywords

FAQs

Package last updated on 08 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc