@data-structure/skip-list

1.0.0 • Public • Published

@data-structure/skip-list

Skip list data structure for JavaScript. See docs.

⚠️ Depending on your environment, the code may require regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

import {decreasing} from '@total-order/primitive';
import {range} from '@iterable-iterator/range';
import {SkipList} from '@data-structure/skip-list';
const list = SkipList.from(decreasing, range(10000));
[...list]; // [9999, 9998, ...]
list.add(...)
list.get(...)
list.has(...)
list.remove(...)

License Version Tests Dependencies GitHub issues Downloads

Code issues Code maintainability Code coverage (cov) Code technical debt Documentation Package size

Package Sidebar

Install

npm i @data-structure/skip-list

Weekly Downloads

2

Version

1.0.0

License

AGPL-3.0

Unpacked Size

615 kB

Total Files

16

Last publish

Collaborators

  • raskat
  • aureooms