JSPM

  • Created
  • Published
  • Downloads 3800021
  • Score
    100M100P100Q211868F
  • License MIT

javascript standard data structure library which benchmark against C++ STL

Package Exports

  • js-sdsl
  • js-sdsl/dist/cjs/index.js
  • js-sdsl/dist/esm/container/TreeContainer/OrderedSet
  • js-sdsl/dist/esm/container/TreeContainer/OrderedSet.js
  • js-sdsl/dist/esm/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (js-sdsl) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

js-sdsl logo

A javascript standard data structure library which benchmark against C++ STL

NPM Version Build Status Coverage Status GITHUB Star NPM Downloads Gzip Size Rate this package MIT-license GITHUB-language

English | 简体中文

✨ Included data structures

  • Stack - first in first out stack.
  • Queue - first in last out queue.
  • PriorityQueue - heap-implemented priority queue.
  • Vector - protected array, cannot to operate properties like length directly.
  • LinkList - linked list of non-contiguous memory addresses.
  • Deque - double-ended-queue, O(1) time complexity to inserting elements front and back or getting elements by index.
  • OrderedSet - sorted set which implemented by red black tree.
  • OrderedMap - sorted map which implemented by red black tree.
  • HashSet - refer to the hash set implemented by java.
  • HashMap - refer to the hash map implemented by java.

⚔️ Benchmark

We are benchmarking against other popular data structure libraries. In some ways we're better than the best library. See benchmark.

🖥 Supported platforms

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
NodeJs
NodeJs
Edge 12 31 49 10 36 10

📦 Download

Download directly by cdn:

Or install js-sdsl using npm:

npm install js-sdsl

Or you can download the isolation packages containing only the containers you want:

package npm install
@js-sdsl/stack NPM Package npm i @js-sdsl/stack
@js-sdsl/queue NPM Package npm i @js-sdsl/queue
@js-sdsl/priority-queue NPM Package npm i @js-sdsl/priority-queue
@js-sdsl/vector NPM Package npm i @js-sdsl/vector
@js-sdsl/link-list NPM Package npm i @js-sdsl/link-list
@js-sdsl/deque NPM Package npm i @js-sdsl/deque
@js-sdsl/ordered-set NPM Package npm i @js-sdsl/ordered-set
@js-sdsl/ordered-map NPM Package npm i @js-sdsl/ordered-map
@js-sdsl/hash-set NPM Package npm i @js-sdsl/hash-set
@js-sdsl/hash-map NPM Package npm i @js-sdsl/hash-map

🪒 Usage

You can visit our official website to get more information.

To help you have a better use, we also provide this API document.

For previous versions of the documentation, please visit:

https://js-sdsl.github.io/js-sdsl/previous/v${version}/index.html

E.g.

https://js-sdsl.github.io/js-sdsl/previous/v4.1.5/index.html

For browser

<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>

For npm

// 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

🛠 Test

Unit test

We use jest library to write unit tests, you can see test coverage on coveralls. You can run yarn test:unit command to reproduce it.

For performance

We tested most of the functions for efficiency. 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.

⌨️ Development

Use Gitpod, a free online dev environment for GitHub.

Open in Gippod

Or clone locally:

$ git clone https://github.com/js-sdsl/js-sdl.git
$ cd js-sdsl
$ npm install
$ npm run dev   # development mode

Then you can see the output in dist/cjs folder.

🤝 Contributing

Feel free to dive in! Open an issue or submit PRs. It may be helpful to read the Contributor Guide.

Contributors

Thanks goes to these wonderful people:


Takatoshi Kondo

💻 ⚠️

noname

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

❤️ Sponsors and Backers

The special thanks to these sponsors or backers because they provided support at a very early stage:

eslint logo

Thanks also give to these sponsors or backers:

sponsors

backers

🪪 License

MIT © ZLY201