0.6.1 • Published 1 year ago
@tristimb/data-structures v0.6.1
@tristimb/data-structures
implementations of common data strcutures.
Getting started
Installation
npm i @tristimb/data-structures
Usage
import { LinkedList } from "@tristimb/data-structures";
const linkedList = new LinkedList();
...Contents
| 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 |