
Product
Secure Your AI-Generated Code with Socket MCP
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
$ 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 © Damian Krzeminski
FAQs
Binary heap
The npm package sterta receives a total of 46 weekly downloads. As such, sterta popularity was classified as not popular.
We found that sterta demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Product
Socket MCP brings real-time security checks to AI-generated code, helping developers catch risky dependencies before they enter the codebase.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.