Package Exports
- js-algorithms
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-algorithms) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
JS-Algorithms
Classic data structures and algorithms (with tests!) written in JavaScript
- Singly Linked List
- Min/Max Binary Heap
- Trie (With Pre-Order Traversal Sorting)
- Stack (push, pop, peek, and isEmpty)
- Queue (add, remove, peek, isEmpty)
- Binary Search Tree
- Hash Table
As well as the following algorithms:
- Breadth First Search
- Depth First Search
- Binary Search
- Merge Sort
- Quick Sort
Various problems will be solved to show how to use these basic algorithms and data structures.
The process of creating this code is documented here.
##Usage
If you want access to these basic data structures in your project, include this package.
> var dataStructures = require('js-algorithms')
> dataStructures
{ binaryHeap: [Function],
binarySearchTree: [Function: bst],
linkedList: [Function],
maxHeap: [Function],
minHeap: [Function],
queue: [Function],
stack: [Function],
stackQueue: [Function],
trie: [Function] }

