implementations of common data strcutures.
npm i @tristimb/data-structures
import { LinkedList } from "@tristimb/data-structures";
const linkedList = new LinkedList();
...
Name | Description | Demo |
---|---|---|
Binary Tree | TBD | |
Bloom Filter | TBD | |
Graph | TBD | |
Hash Set | TBD | |
Heap | TBD | |
LRU Cache | A FIFO queue that implements an underlying Linked List. | Activity Cache |
Linked List | A list like data structure where nodes hold pointers to their neighbors. | TBD |
Stack | TBD | |
Trie | A tree based data structure where each node contains a character from a set of strings, as child nodes. | Typeahead / Spell Check |