Javascript Data Structure. Heap, Binary Tree, Red Black Tree, Linked List, Deque, Trie, HashMap, Directed Graph, Undirected Graph, Binary Search Tree(BST), AVL Tree, Priority Queue, Graph, Queue, Tree Multiset, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Queue, Min Heap, Min Priority Queue, Stack. Benchmark compared with C++ STL. API aligned with ES6 and Java.util. Usability is comparable to Python
Package Exports
data-structure-typed
Readme
data-structure-typed
Why
Do you envy C++ with STL (std::), Python with collections, and Java with java.util ? Well, no need to envy
anymore! JavaScript and TypeScript now have data-structure-typed.Benchmark compared with C++ STL. API standards aligned with ES6 and Java. Usability is comparable to Python
We provide data structures that are not available in JS/TS
Heap, Binary Tree, Red Black Tree, Linked List, Deque, Trie, Directed Graph, Undirected Graph, BST, AVL Tree, Priority Queue, Queue, Tree Multiset.
The corresponding relationships between data structures in different language standard libraries.
Data Structure Typed
C++ STL
java.util
Python collections
Heap<E>
-
-
heapq
PriorityQueue<E>
priority_queue<T>
PriorityQueue<E>
-
Deque<E>
deque<T>
ArrayDeque<E>
deque
Queue<E>
queue<T>
Queue<E>
-
HashMap<K, V>
unordered_map<K, V>
HashMap<K, V>
defaultdict
DoublyLinkedList<E>
list<T>
LinkedList<E>
-
SinglyLinkedList<E>
-
-
-
BinaryTree<K, V>
-
-
-
BST<K, V>
-
-
-
RedBlackTree<E>
set<T>
TreeSet<E>
-
RedBlackTree<K, V>
map<K, V>
TreeMap<K, V>
-
TreeMultimap<K, V>
multimap<K, V>
-
-
TreeMultimap<E>
multiset<T>
-
-
Trie
-
-
-
DirectedGraph<V, E>
-
-
-
UndirectedGraph<V, E>
-
-
-
PriorityQueue<E>
priority_queue<T>
PriorityQueue<E>
-
Array<E>
vector<T>
ArrayList<E>
list
Stack<E>
stack<T>
Stack<E>
-
HashMap<E>
unordered_set<T>
HashSet<E>
set
-
unordered_multiset
-
Counter
LinkedHashMap<K, V>
-
LinkedHashMap<K, V>
OrderedDict
-
unordered_multimap<K, V>
-
-
-
bitset<N>
-
-
Built-in classic algorithms
Algorithm
Function Description
Iteration Type
Binary Tree DFS
Traverse a binary tree in a depth-first manner, starting from the root node, first visiting the left subtree,
and then the right subtree, using recursion.
Recursion + Iteration
Binary Tree BFS
Traverse a binary tree in a breadth-first manner, starting from the root node, visiting nodes level by level
from left to right.
Iteration
Graph DFS
Traverse a graph in a depth-first manner, starting from a given node, exploring along one path as deeply as
possible, and backtracking to explore other paths. Used for finding connected components, paths, etc.
Recursion + Iteration
Binary Tree Morris
Morris traversal is an in-order traversal algorithm for binary trees with O(1) space complexity. It allows tree
traversal without additional stack or recursion.
Iteration
Graph BFS
Traverse a graph in a breadth-first manner, starting from a given node, first visiting nodes directly connected
to the starting node, and then expanding level by level. Used for finding shortest paths, etc.
Recursion + Iteration
Graph Tarjan's Algorithm
Find strongly connected components in a graph, typically implemented using depth-first search.
Recursion
Graph Bellman-Ford Algorithm
Finding the shortest paths from a single source, can handle negative weight edges
Iteration
Graph Dijkstra's Algorithm
Finding the shortest paths from a single source, cannot handle negative weight edges
Iteration
Graph Floyd-Warshall Algorithm
Finding the shortest paths between all pairs of nodes
Iteration
Graph getCycles
Find all cycles in a graph or detect the presence of cycles.
Recursion
Graph getCutVertexes
Find cut vertices in a graph, which are nodes that, when removed, increase the number of connected components in
the graph.
Recursion
Graph getSCCs
Find strongly connected components in a graph, which are subgraphs where any two nodes can reach each other.
Recursion
Graph getBridges
Find bridges in a graph, which are edges that, when removed, increase the number of connected components in the
graph.
Recursion
Graph topologicalSort
Perform topological sorting on a directed acyclic graph (DAG) to find a linear order of nodes such that all
directed edges go from earlier nodes to later nodes.
Recursion
Software Engineering Design Standards
We strictly adhere to computer science theory and software development standards. Our LinkedList is designed in the traditional sense of the LinkedList data structure, and we refrain from substituting it with a Deque solely for the purpose of showcasing performance test data. However, we have also implemented a Deque based on a dynamic array concurrently.
Principle
Description
Practicality
Follows ES6 and ESNext standards, offering unified and considerate optional parameters, and simplifies method names.
Extensibility
Adheres to OOP (Object-Oriented Programming) principles, allowing inheritance for all data structures.
Modularization
Includes data structure modularization and independent NPM packages.
Efficiency
All methods provide time and space complexity, comparable to native JS performance.
Maintainability
Follows open-source community development standards, complete documentation, continuous integration, and adheres to TDD (Test-Driven Development) patterns.
Testability
Automated and customized unit testing, performance testing, and integration testing.
Portability
Plans for porting to Java, Python, and C++, currently achieved to 80%.
Reusability
Fully decoupled, minimized side effects, and adheres to OOP.
Security
Carefully designed security for member variables and methods. Read-write separation. Data structure software does not need to consider other security aspects.
Scalability
Data structure software does not involve load issues.
Benchmark
avl-tree
test name
time taken (ms)
executions per sec
sample deviation
10,000 add randomly
132.61
7.54
0.03
10,000 add & delete randomly
179.82
5.56
0.00
10,000 addMany
128.84
7.76
7.04e-4
10,000 get
48.40
20.66
3.34e-4
binary-tree-overall
test name
time taken (ms)
executions per sec
sample deviation
10,000 RBTree add
5.84
171.12
8.80e-5
10,000 RBTree add & delete randomly
16.30
61.34
0.01
10,000 RBTree get
19.80
50.50
0.00
10,000 AVLTree add
122.94
8.13
0.00
10,000 AVLTree add & delete randomly
185.43
5.39
0.00
10,000 AVLTree get
0.96
1044.69
6.87e-6
rb-tree
test name
time taken (ms)
executions per sec
sample deviation
100,000 add
79.39
12.60
0.00
100,000 add & delete randomly
211.76
4.72
0.00
100,000 getNode
169.34
5.91
6.62e-4
100,000 add & iterator
112.02
8.93
0.01
directed-graph
test name
time taken (ms)
executions per sec
sample deviation
1,000 addVertex
0.10
9590.36
1.32e-6
1,000 addEdge
6.19
161.68
4.32e-4
1,000 getVertex
0.05
2.16e+4
3.75e-7
1,000 getEdge
24.72
40.45
0.01
tarjan
226.08
4.42
0.01
tarjan all
6667.55
0.15
0.27
topologicalSort
186.59
5.36
0.00
hash-map
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 set
137.00
7.30
0.08
Native Map 1,000,000 set
236.58
4.23
0.05
Native Set 1,000,000 add
187.78
5.33
0.05
1,000,000 set & get
123.91
8.07
0.04
Native Map 1,000,000 set & get
286.03
3.50
0.03
Native Set 1,000,000 add & has
188.67
5.30
0.03
1,000,000 ObjKey set & get
327.70
3.05
0.05
Native Map 1,000,000 ObjKey set & get
285.22
3.51
0.05
Native Set 1,000,000 ObjKey add & has
278.08
3.60
0.07
heap
test name
time taken (ms)
executions per sec
sample deviation
100,000 add & poll
23.99
41.68
0.00
100,000 add & dfs
33.23
30.09
0.00
10,000 fib add & pop
358.16
2.79
0.00
doubly-linked-list
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 push
229.07
4.37
0.06
1,000,000 unshift
217.64
4.59
0.08
1,000,000 unshift & shift
175.13
5.71
0.04
1,000,000 addBefore
342.22
2.92
0.08
singly-linked-list
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 push & shift
210.65
4.75
0.06
10,000 push & pop
214.54
4.66
0.01
10,000 addBefore
248.45
4.02
0.01
priority-queue
test name
time taken (ms)
executions per sec
sample deviation
100,000 add & poll
75.67
13.22
0.00
deque
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 push
13.14
76.13
1.36e-4
10,000 push & delete
4716.79
0.21
0.13
1,000,000 push & pop
22.38
44.68
0.00
100,000 push & shift
2.15
464.20
1.98e-5
Native Array 100,000 push & shift
2241.30
0.45
0.14
100,000 unshift & shift
2.34
426.69
0.00
Native Array 100,000 unshift & shift
3971.32
0.25
0.18
queue
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 push
44.80
22.32
0.01
100,000 push & shift
4.91
203.64
1.15e-4
Native Array 100,000 push & shift
2116.78
0.47
0.12
Native Array 100,000 push & pop
4.30
232.29
9.32e-5
stack
test name
time taken (ms)
executions per sec
sample deviation
1,000,000 push
42.15
23.72
0.00
1,000,000 push & pop
52.90
18.90
0.02
trie
test name
time taken (ms)
executions per sec
sample deviation
100,000 push
44.55
22.45
8.46e-4
100,000 getWords
87.48
11.43
0.00
supported module system
Now you can use it in Node.js and browser environments
CommonJS:require export.modules =
ESModule: import export
Typescript: import export
UMD: var Deque = dataStructureTyped.Deque
CDN
Copy the line below into the head tag in an HTML document.