Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
code42day-binary-heap
Advanced tools
$ npm install --save conde42day-binary-heap
var h = heap();
h.push(5);
h.push(2);
h.pop(); // 2
h.pop(); // 5
h.pop(); // undefined
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
MIT © code42day
FAQs
Binary heap
We found that code42day-binary-heap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.