English | 简体中文
- Stack - First-in, last-out stack.
- Queue - First-in, first-out queue.
- PriorityQueue - Priority queue implemented using heap.
- Vector - Protected array, cannot directly operate on properties like
length
. - LinkedList - Linked list using non-contiguous memory addresses.
- Deque - Double-ended queue, O(1) time complexity to
unshift
or getting elements by index. - OrderedSet - Sorted set implemented using red black tree.
- OrderedMap - Sorted map implemented using red black tree.
- HashSet - Refer to the polyfill of ES6 Set.
- HashMap - Refer to the polyfill of ES6 Map.
We are benchmarking against other popular data structure libraries. In some ways we're better than the best library. See Benchmark.
IE / Edge |
Firefox |
Chrome |
Safari |
Opera |
NodeJs |
---|---|---|---|---|---|
Edge 12 | 36 | 49 | 10 | 36 | 10 |
Download directly by cdn:
- js-sdsl.js (for development)
- js-sdsl.min.js (for production)
Or install js-sdsl using npm:
npm install js-sdsl
Or you can download the isolation packages containing only the containers you want:
You can visit our official website to get more information.
To help you use the library more effectively, we also provide this API document.
For previous versions of the documentation, please visit:
https://js-sdsl.org/js-sdsl/previous/v${version}/index.html
E.g.
https://js-sdsl.org/js-sdsl/previous/v4.1.5/index.html
<script src="https://unpkg.com/js-sdsl/dist/umd/js-sdsl.min.js"></script>
<script>
const {
Vector,
Stack,
Queue,
LinkList,
Deque,
PriorityQueue,
OrderedSet,
OrderedMap,
HashSet,
HashMap
} = sdsl;
const myOrderedMap = new OrderedMap();
myOrderedMap.setElement(1, 2);
console.log(myOrderedMap.getElementByKey(1)); // 2
</script>
// esModule
import { OrderedMap } from 'js-sdsl';
// commonJs
const { OrderedMap } = require('js-sdsl');
const myOrderedMap = new OrderedMap();
myOrderedMap.setElement(1, 2);
console.log(myOrderedMap.getElementByKey(1)); // 2
We use Karma and Mocha to run unit tests and synchronize coverage to Coveralls. You can run yarn test:unit
command to reproduce it.
We benchmark most functions for performance. You can go to gh-pages/performance.md
to see our running results or reproduce it with yarn test:performance
command.
You can also visit here to get the result.
Use Gitpod, a free online dev environment for GitHub.
Or clone locally:
$ git clone https://github.com/js-sdsl/js-sdsl.git
$ cd js-sdsl
$ npm install
$ npm run dev # development mode
Then you can see the output in dist/cjs
folder.
Feel free to dive in! Open an issue or submit PRs. It may be helpful to read the Contributor Guide.
Thanks goes to these wonderful people:
This project follows the all-contributors specification. Contributions of any kind welcome!
The special thanks to these sponsors or backers because they provided support at a very early stage:
Thanks also give to these sponsors or backers: