Home
Manual
Reference
Source
Test
F
BinomialHeap
F
BinomialTree
F
BinomialTreeWithParent
F
LazyBinomialHeap
F
LazyNode
F
LazyStack
src/LazyNode.js
export default function LazyNode(value, next) { this.value = value; this.next = next; }