Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Socket
Sign inDemoInstall

data-structure-typed

Package Overview
Dependencies
Maintainers
1
Versions
201
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data-structure-typed

Data Structures of Javascript & TypeScript. Binary Tree, BST, Graph, Heap, Priority Queue, Linked List, Queue, Deque, Stack, AVL Tree, Tree Multiset, Trie, Directed Graph, Undirected Graph, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Qu


Version published
Weekly downloads
8.9K
increased by34.79%
Maintainers
1
Weekly downloads
 
Created
Source

Data Structure Typed

NPM GitHub top language npm eslint npm package minimized gzipped size (select exports) npm bundle size npm

Data Structures of Javascript & TypeScript.

Do you envy C++ with STL, Python with collections, and Java with java.util ? Well, no need to envy anymore! JavaScript and TypeScript now have data-structure-typed.

Now you can use this library in Node.js and browser environments in CommonJS(require export.modules = ), ESModule(import export), Typescript(import export), UMD(var Queue = dataStructureTyped.Queue)

Built-in classic algorithms

DFS(Depth-First Search), DFSIterative, BFS(Breadth-First Search), morris, Bellman-Ford Algorithm, Dijkstra's Algorithm, Floyd-Warshall Algorithm, Tarjan's Algorithm.

Installation and Usage

npm

npm i data-structure-typed --save

yarn

yarn add data-structure-typed
import {
  BinaryTree, Graph, Queue, Stack, PriorityQueue, BST, Trie, DoublyLinkedList,
  AVLTree, MinHeap, SinglyLinkedList, DirectedGraph, TreeMultiset,
  DirectedVertex, AVLTreeNode
} from 'data-structure-typed';

CDN


<script src='https://cdn.jsdelivr.net/npm/data-structure-typed/dist/umd/data-structure-typed.min.js'></script>
const {Heap} = dataStructureTyped;
const {
  BinaryTree, Graph, Queue, Stack, PriorityQueue, BST, Trie, DoublyLinkedList,
  AVLTree, MinHeap, SinglyLinkedList, DirectedGraph, TreeMultiset,
  DirectedVertex, AVLTreeNode
} = dataStructureTyped;

API docs & Examples

API Docs

Live Examples

Examples Repository

Code Snippet

Binary Search Tree (BST) snippet

TS
import {BST, BSTNode} from 'data-structure-typed';

const bst = new BST();
bst.add(11);
bst.add(3);
bst.addMany([15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5]);
bst.size === 16;                // true
bst.has(6);                     // true
const node6 = bst.get(6);       // BSTNode
bst.getHeight(6) === 2;         // true
bst.getHeight() === 5;          // true
bst.getDepth(6) === 3;          // true

bst.getLeftMost()?.id === 1;    // true

bst.delete(6);
bst.get(6);                     // null
bst.isAVLBalanced();            // true
bst.bfs()[0] === 11;            // true

const objBST = new BST<BSTNode<{id: number, keyA: number}>>();
objBST.add(11, {id: 11, keyA: 11});
objBST.add(3, {id: 3, keyA: 3});

objBST.addMany([{id: 15, keyA: 15}, {id: 1, keyA: 1}, {id: 8, keyA: 8},
  {id: 13, keyA: 13}, {id: 16, keyA: 16}, {id: 2, keyA: 2},
  {id: 6, keyA: 6}, {id: 9, keyA: 9}, {id: 12, keyA: 12},
  {id: 14, keyA: 14}, {id: 4, keyA: 4}, {id: 7, keyA: 7},
  {id: 10, keyA: 10}, {id: 5, keyA: 5}]);

objBST.delete(11);
JS
const {BST, BSTNode} = require('data-structure-typed');

const bst = new BST();
bst.add(11);
bst.add(3);
bst.addMany([15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5]);
bst.size === 16;        // true
bst.has(6);             // true
const node6 = bst.get(6);
bst.getHeight(6) === 2; // true
bst.getHeight() === 5;  // true
bst.getDepth(6) === 3;  // true
const leftMost = bst.getLeftMost();
leftMost?.id === 1;     // true
expect(leftMost?.id).toBe(1);
bst.delete(6);
bst.get(6);             // null
bst.isAVLBalanced();    // true or false
const bfsIDs = bst.bfs();
bfsIDs[0] === 11;       // true
expect(bfsIDs[0]).toBe(11);

const objBST = new BST();
objBST.add(11, {id: 11, keyA: 11});
objBST.add(3, {id: 3, keyA: 3});

objBST.addMany([{id: 15, keyA: 15}, {id: 1, keyA: 1}, {id: 8, keyA: 8},
  {id: 13, keyA: 13}, {id: 16, keyA: 16}, {id: 2, keyA: 2},
  {id: 6, keyA: 6}, {id: 9, keyA: 9}, {id: 12, keyA: 12},
  {id: 14, keyA: 14}, {id: 4, keyA: 4}, {id: 7, keyA: 7},
  {id: 10, keyA: 10}, {id: 5, keyA: 5}]);

objBST.delete(11);

const avlTree = new AVLTree();
avlTree.addMany([11, 3, 15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5])
avlTree.isAVLBalanced();    // true
avlTree.delete(10);
avlTree.isAVLBalanced();    // true

AVLTree snippet

TS
import {AVLTree} from 'data-structure-typed';

const avlTree = new AVLTree();
avlTree.addMany([11, 3, 15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5])
avlTree.isAVLBalanced();    // true
avlTree.delete(10);
avlTree.isAVLBalanced();    // true
JS
const {AVLTree} = require('data-structure-typed');

const avlTree = new AVLTree();
avlTree.addMany([11, 3, 15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5])
avlTree.isAVLBalanced();    // true
avlTree.delete(10);
avlTree.isAVLBalanced();    // true

Directed Graph simple snippet

TS or JS
import {DirectedGraph} from 'data-structure-typed';

const graph = new DirectedGraph();

graph.addVertex('A');
graph.addVertex('B');

graph.hasVertex('A');       // true
graph.hasVertex('B');       // true
graph.hasVertex('C');       // false

graph.addEdge('A', 'B');
graph.hasEdge('A', 'B');    // true
graph.hasEdge('B', 'A');    // false

graph.deleteEdgeSrcToDest('A', 'B');
graph.hasEdge('A', 'B');    // false

graph.addVertex('C');

graph.addEdge('A', 'B');
graph.addEdge('B', 'C');

const topologicalOrderIds = graph.topologicalSort(); // ['A', 'B', 'C']

Undirected Graph snippet

TS or JS
import {UndirectedGraph} from 'data-structure-typed';

const graph = new UndirectedGraph();
graph.addVertex('A');
graph.addVertex('B');
graph.addVertex('C');
graph.addVertex('D');
graph.deleteVertex('C');
graph.addEdge('A', 'B');
graph.addEdge('B', 'D');

const dijkstraResult = graph.dijkstra('A');
Array.from(dijkstraResult?.seen ?? []).map(vertex => vertex.id) // ['A', 'B', 'D']

Data Structures

Data StructureUnit TestPerformance TestAPI DocumentationImplemented
Binary TreeBinary Tree
Binary Search Tree (BST)BST
AVL TreeAVLTree
Tree MultisetTreeMultiset
Segment TreeSegmentTree
Binary Indexed TreeBinaryIndexedTree
GraphAbstractGraph
Directed GraphDirectedGraph
Undirected GraphUndirectedGraph
Linked ListSinglyLinkedList
Singly Linked ListSinglyLinkedList
Doubly Linked ListDoublyLinkedList
QueueQueue
Object DequeObjectDeque
Array DequeArrayDeque
StackStack
Coordinate SetCoordinateSet
Coordinate MapCoordinateMap
HeapHeap
Priority QueuePriorityQueue
Max Priority QueueMaxPriorityQueue
Min Priority QueueMinPriorityQueue
TrieTrie

Standard library data structure comparison

Data StructureData Structure TypedC++ STLjava.utilPython collections
Dynamic ArrayArray<E>vector<T>ArrayList<E>list
Linked ListDoublyLinkedList<E>list<T>LinkedList<E>deque
Singly Linked ListSinglyLinkedList<E>---
SetSet<E>set<T>HashSet<E>set
MapMap<K, V>map<K, V>HashMap<K, V>dict
Ordered DictionaryMap<K, V>--OrderedDict
QueueQueue<E>queue<T>Queue<E>-
Priority QueuePriorityQueue<E>priority_queue<T>PriorityQueue<E>-
HeapHeap<V>priority_queue<T>PriorityQueue<E>heapq
StackStack<E>stack<T>Stack<E>-
DequeDeque<E>deque<T>--
TrieTrie---
Unordered MapHashMap<K, V>unordered_map<K, V>HashMap<K, V>defaultdict
Multiset-multiset<T>--
Multimap-multimap<K, V>--
Binary TreeBinaryTree<K, V>---
Binary Search TreeBST<K, V>---
Directed GraphDirectedGraph<V, E>---
Undirected GraphUndirectedGraph<V, E>---
Unordered Multiset-unordered_multiset-Counter
Linked Hash Set--LinkedHashSet<E>-
Linked Hash Map--LinkedHashMap<K, V>-
Sorted SetAVLTree<E>-TreeSet<E>-
Sorted MapAVLTree<K, V>-TreeMap<K, V>-
Tree SetAVLTree<E>setTreeSet<E>-
Unordered Multimap-unordered_multimap<K, V>--
Bitset-bitset<N>--
Unordered Set-unordered_set<T>HashSet<E>-

Code design

Adhere to ES6 standard naming conventions for APIs.

Standardize API conventions by using 'add' and 'delete' for element manipulation methods in all data structures.

Opt for concise and clear method names, avoiding excessive length while ensuring explicit intent.

Object-oriented programming(OOP)

By strictly adhering to object-oriented design (BinaryTree -> BST -> AVLTree -> TreeMultiset), you can seamlessly inherit the existing data structures to implement the customized ones you need. Object-oriented design stands as the optimal approach to data structure design.

Benchmark

avl-tree
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 add randomly2.28438.38230.002.56e-5
1000 add & delete randomly5.16193.94110.017.96e-4
1000 addMany3.05328.30170.003.13e-4
1000 get2.08480.72250.009.01e-5
binary-tree
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 add randomly12.8877.6550.011.17e-4
1000 add & delete randomly15.9562.7040.021.78e-4
1000 addMany10.6194.2550.011.16e-4
1000 get18.0255.5130.021.59e-4
1000 dfs69.9514.3010.076.49e-4
1000 bfs54.7818.2510.054.98e-4
1000 morris37.2626.8320.042.16e-4
bst
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 add randomly2.02496.10250.001.56e-5
1000 add & delete randomly4.60217.31120.004.43e-4
1000 addMany2.23448.71240.002.96e-4
1000 get2.09479.52250.001.27e-5
directed-graph
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 addVertex0.109871.965011.01e-47.32e-7
1000 addEdge6.48154.2990.010.00
1000 getVertex0.052.17e+411104.61e-53.80e-7
1000 getEdge24.6540.5730.020.01
tarjan208.004.8110.210.01
tarjan all212.974.7010.210.00
topologicalSort171.495.8310.170.01
heap
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 add & pop0.342929.811493.41e-42.37e-6
1000 fib add & pop3.89257.31140.002.53e-5
doubly-linked-list
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000000 unshift212.404.7110.210.02
1000000 unshift & shift172.945.7810.170.03
1000 insertBefore0.033.70e+419032.71e-52.38e-6
singly-linked-list
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000 push & pop1.75571.73300.005.06e-5
1000 insertBefore2.30434.82220.005.10e-5
max-priority-queue
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
10000 refill & poll11.4187.6550.011.49e-4
deque
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000000 push212.514.7110.210.06
1000000 shift24.9840.0430.020.00
queue
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
1000000 push41.9723.8320.040.01
1000000 push & shift79.0812.6510.080.00
trie
test nametime taken (ms)executions per secexecuted timessample mean (secs)sample deviation
100000 push54.2418.4410.057.00e-4
100000 getWords96.1210.4010.100.00

Keywords

FAQs

Package last updated on 04 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc