Fast, light and hassle-free JavaScript data structures, written in CoffeeScript.
- (Hash) Map
- Heap
- Graph
- (Doubly) Linked List
- Queue
- Self-Balancing Binary Search Tree (Red-Black Tree)
- Trie
Using npm:
npm install data-structuresThen where needed:
varHeap=require('data-structures').Heap;varheap=newHeap();heap.add(3);heap.removeMin();Alternatively, you can directly use the compiled JavaScript version in the "distribution" folder. It's always in sync with the CoffeeScript one.
Using Bower:
bower install data-structuresOr if you prefer a more traditional approach, Get the whole file here. Either use the development version or the minified production version.
Then put the file in your HTML page,
<scriptsrc="path/to/dataStructure/file"></script><script>varHeap=require("data-structures").Heap;varheap=newHeap();heap.add(3);heap.removeMin();</script>(Magical client-side require()) courtesy of Browserify.
The wiki page is a formatted version of the documentation in the code.
Install the npm development dependencies:
npm installThen, with Grunt:
grunt testNote that if it's a pull request you'd like to submit, ignore this section. The code will be rebuilt after the pull anyways.
Feel free to modify the source code and rebuild it for your own needs:
gruntThis will take care of compiling CoffeeScript into JavaScript and, if needed, bundle them for the browser.
MIT.
