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.
node-interval-tree
Advanced tools
An Interval Tree data structure implemented as an augmented AVL Tree where each node maintains a list of records and their search intervals. Record is composed of an interval and its underlying data, sent by a client. This allows the interval tree to have the same interval inserted multiple times, as long as its data is different. Both insertion and deletion require O(log n)
time. Searching requires O(min(n, k * log n))
time, where k
is the number of intervals in the output list.
import IntervalTree from 'node-interval-tree'
const intervalTree = new IntervalTree<string>()
intervalTree.insert(low, high, 'foo')
Insert an interval with associated data into the tree. Intervals with the same low and high value can be inserted, as long as their data is different.
Data can be any JS primitive or object.
low
and high
have to be numbers where low <= high
(also the case for all other operations with low
and high
).
Returns true if successfully inserted, false if nothing inserted.
intervalTree.search(low, high)
Search all intervals that overlap low and high arguments, both of them inclusive. Low and high values don't need to be in the tree themselves. Returns an array of all data objects of the intervals in the range [low, high]; doesn't return the intervals themselves.
intervalTree.remove(low, high, 'foo')
Remove an interval from the tree. To remove an interval, all arguments must match the one in the tree. Returns true if successfully removed, false if nothing removed.
The default export is convenient to use but can be too limiting for some.
exports.IntervalTree
operate on Interval
directly, giving you access to the low
and high
values in the results.
You can attach extra properties to Interval
but they should not be modified after insertion as objects in the tree are compared according to shallow equality.
import { Interval, IntervalTree } from 'node-interval-tree'
interface StringInterval extends Interval {
name: string
}
const intervalTree = new IntervalTree<StringInterval>()
intervalTree.insert({ low, high })
intervalTree.insert({ low, high, name: 'foo' })
Insert an interval into the tree. Intervals are compared according to shallow equality and only inserted if unique. Returns true if successfully inserted, false if nothing inserted.
intervalTree.search(low, high)
Search all intervals that overlap low and high arguments, both of them inclusive. Low and high values don't need to be in the tree themselves. Returns an array of all intervals in the range [low, high].
intervalTree.remove({ low, high })
intervalTree.remove({ low, high, name: 'foo' })
Remove an interval from the tree. Intervals are compared according to shallow equality and only removed if all properties match. Returns true if successfully removed, false if nothing removed.
The low
and high
values of the interval are of type number
by default. However, the library
offers support to use bigint
type for interval keys instead.
With default export:
import IntervalTree from 'node-interval-tree'
const intervalTree = new IntervalTree<string, bigint>()
With advanced export:
import { Interval, IntervalTree } from 'node-interval-tree'
interface StringInterval extends Interval<bigint> {
name: string
}
const intervalTree = new IntervalTree<StringInterval, bigint>()
import IntervalTree from 'node-interval-tree'
const intervalTree = new IntervalTree<string>()
intervalTree.insert(10, 15, 'foo') // -> true
intervalTree.insert(35, 50, 'baz') // -> true
intervalTree.search(12, 20) // -> ['foo']
intervalTree.remove(35, 50, 'baz') // -> true
intervalTree.insert(10, 15, 'baz') // -> true
intervalTree.search(12, 20) // -> ['foo', 'baz']
More examples can be found in the demo folder.
MIT
FAQs
Implementation of interval tree data structure.
The npm package node-interval-tree receives a total of 6,636 weekly downloads. As such, node-interval-tree popularity was classified as popular.
We found that node-interval-tree 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.