heap-data-structure / about

:fallen_leaf: Heap data structures for JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

explore other implementations of binomial heaps

make-github-pseudonymous-again opened this issue · comments

  1. use a backreference to keep track of nodes instead of swapping childrens
    • faster because we only need to swap values and backreferences
    • additional memory used
  2. implementation only supporting push pop and merge