Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.07 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.07 KB

@tristimb/data-structures

npm (scoped)

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