1.0.1 • Published 8 years ago

heap-lite v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

heap-lite

a lite JS implementation of the heap data structure (min-heap)

Install

  $ npm install -S heap-lite

ES6

  import Heap from 'heap-lite'

ES5

  var Heap = require('heap-lite').default

Example

  import Heap from 'heap-lite'
  const heap = new Heap()
  heap.insert(1)
  heap.insert(2)
  heap.insert(3)
  heap.pop()