test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add | 6.44 | 155.39 | 1.89e-4 |
100,000 add & poll | 31.54 | 31.71 | 7.91e-4 |
# data-structure-typed ![npm](https://img.shields.io/npm/dm/data-structure-typed) ![GitHub contributors](https://img.shields.io/github/contributors/zrwusa/data-structure-typed) ![npm package minimized gzipped size (select exports)](https://img.shields.io/bundlejs/size/data-structure-typed) ![GitHub top language](https://img.shields.io/github/languages/top/zrwusa/data-structure-typed) ![GITHUB Star](https://img.shields.io/github/stars/zrwusa/data-structure-typed) ![eslint](https://aleen42.github.io/badges/src/eslint.svg) ![NPM](https://img.shields.io/npm/l/data-structure-typed) ![npm](https://img.shields.io/npm/v/data-structure-typed) [//]: # (![npm bundle size](https://img.shields.io/bundlephobia/min/data-structure-typed)) [//]: # (
) ## Installation and Usage ### npm ```bash npm i data-structure-typed --save ``` ### yarn ```bash yarn add data-structure-typed ``` ```js import { Heap, Graph, Queue, Deque, PriorityQueue, BST, Trie, DoublyLinkedList, AVLTree, SinglyLinkedList, DirectedGraph, RedBlackTree, TreeMultiMap, DirectedVertex, Stack, AVLTreeNode } from 'data-structure-typed'; ``` If you only want to use a specific data structure independently, you can install it separately, for example, by running ```bash npm i heap-typed --save ``` ## 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 [//]: # (![Branches](https://img.shields.io/badge/branches-55.47%25-red.svg?style=flat)) [//]: # (![Statements](https://img.shields.io/badge/statements-67%25-red.svg?style=flat)) [//]: # (![Functions](https://img.shields.io/badge/functions-66.38%25-red.svg?style=flat)) [//]: # (![Lines](https://img.shields.io/badge/lines-68.6%25-red.svg?style=flat)) ### Performance Performance surpasses that of native JS/TSMethod | Time Taken | Data Scale | Belongs To | big O |
---|---|---|---|---|
Queue.push & shift | 5.83 ms | 100K | Ours | O(1) |
Array.push & shift | 2829.59 ms | 100K | Native JS | O(n) |
Deque.unshift & shift | 2.44 ms | 100K | Ours | O(1) |
Array.unshift & shift | 4750.37 ms | 100K | Native JS | O(n) |
HashMap.set | 122.51 ms | 1M | Ours | O(1) |
Map.set | 223.80 ms | 1M | Native JS | O(1) |
Set.add | 185.06 ms | 1M | Native JS | O(1) |
Java ArrayList | Java Queue | Java ArrayDeque | Java LinkedList |
---|---|---|---|
add | offer | push | push |
remove | poll | removeLast | removeLast |
remove | poll | removeFirst | removeFirst |
add(0, element) | offerFirst | unshift | unshift |
Data Structure | Unit Test | Perf Test | API Doc | NPM |
---|---|---|---|---|
Binary Tree | View | View | ||
Binary Search Tree (BST) | View | View | ||
AVL Tree | View | View | ||
Red Black Tree | View | View | ||
Tree Multimap | View | View | ||
Heap | View | View | ||
Priority Queue | View | View | ||
Max Priority Queue | View | View | ||
Min Priority Queue | View | View | ||
Trie | View | View | ||
Graph | View | View | ||
Directed Graph | View | View | ||
Undirected Graph | View | View | ||
Queue | View | View | ||
Deque | View | View | ||
Hash Map | View | |||
Linked List | View | View | ||
Singly Linked List | View | View | ||
Doubly Linked List | View | View | ||
Stack | View | View | ||
Segment Tree | View | |||
Binary Indexed Tree | View |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add | 6.44 | 155.39 | 1.89e-4 |
100,000 add & poll | 31.54 | 31.71 | 7.91e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add | 55.64 | 17.97 | 3.93e-4 |
100,000 add randomly | 70.35 | 14.21 | 0.00 |
100,000 get | 115.51 | 8.66 | 0.00 |
100,000 iterator | 27.64 | 36.18 | 0.01 |
100,000 add & delete orderly | 120.73 | 8.28 | 0.00 |
100,000 add & delete randomly | 223.37 | 4.48 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 42.87 | 23.33 | 0.01 |
100,000 push & shift | 4.87 | 205.17 | 6.94e-4 |
Native JS Array 100,000 push & shift | 2196.84 | 0.46 | 0.19 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 23.68 | 42.22 | 0.00 |
1,000,000 push & pop | 30.68 | 32.60 | 0.00 |
1,000,000 push & shift | 30.49 | 32.80 | 0.00 |
100,000 push & shift | 3.21 | 311.51 | 2.41e-4 |
Native JS Array 100,000 push & shift | 2510.08 | 0.40 | 0.34 |
100,000 unshift & shift | 2.89 | 346.57 | 2.98e-4 |
Native JS Array 100,000 unshift & shift | 4581.65 | 0.22 | 0.40 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 set | 120.66 | 8.29 | 0.03 |
Native JS Map 1,000,000 set | 202.57 | 4.94 | 0.01 |
Native JS Set 1,000,000 add | 167.46 | 5.97 | 0.01 |
1,000,000 set & get | 115.60 | 8.65 | 0.01 |
Native JS Map 1,000,000 set & get | 265.34 | 3.77 | 0.01 |
Native JS Set 1,000,000 add & has | 167.85 | 5.96 | 0.01 |
1,000,000 ObjKey set & get | 308.73 | 3.24 | 0.03 |
Native JS Map 1,000,000 ObjKey set & get | 300.60 | 3.33 | 0.03 |
Native JS Set 1,000,000 ObjKey add & has | 270.49 | 3.70 | 0.04 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 push | 45.79 | 21.84 | 7.32e-4 |
100,000 getWords | 87.85 | 11.38 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add | 260.78 | 3.83 | 0.00 |
100,000 add randomly | 306.61 | 3.26 | 0.00 |
100,000 get | 140.27 | 7.13 | 0.00 |
100,000 iterator | 29.90 | 33.45 | 0.01 |
100,000 add & delete orderly | 428.76 | 2.33 | 0.00 |
100,000 add & delete randomly | 580.74 | 1.72 | 0.00 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
10,000 RBTree add | 5.74 | 174.10 | 9.29e-5 |
10,000 RBTree add & delete randomly | 18.83 | 53.10 | 1.49e-4 |
10,000 RBTree get | 0.77 | 1290.55 | 7.33e-6 |
10,000 AVLTree add | 22.60 | 44.25 | 2.14e-4 |
10,000 AVLTree get | 10.63 | 94.08 | 1.02e-4 |
10,000 AVLTree add & delete randomly | 44.17 | 22.64 | 3.52e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000 addVertex | 0.11 | 9501.69 | 1.02e-6 |
1,000 addEdge | 6.18 | 161.81 | 4.27e-4 |
1,000 getVertex | 0.05 | 2.16e+4 | 3.23e-7 |
1,000 getEdge | 23.31 | 42.90 | 0.00 |
tarjan | 206.06 | 4.85 | 0.01 |
topologicalSort | 181.65 | 5.51 | 0.01 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 207.88 | 4.81 | 0.04 |
1,000,000 unshift | 214.33 | 4.67 | 0.06 |
1,000,000 unshift & shift | 185.54 | 5.39 | 0.04 |
1,000,000 addBefore | 308.66 | 3.24 | 0.08 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push & shift | 202.61 | 4.94 | 0.04 |
10,000 push & pop | 219.69 | 4.55 | 0.02 |
10,000 addBefore | 247.13 | 4.05 | 0.01 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
100,000 add | 27.36 | 36.55 | 9.92e-4 |
100,000 add & poll | 146.72 | 6.82 | 6.84e-4 |
test name | time taken (ms) | executions per sec | sample deviation |
---|---|---|---|
1,000,000 push | 39.36 | 25.41 | 0.01 |
1,000,000 push & pop | 47.86 | 20.89 | 0.01 |
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> | - | - |
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 getCutVertices | 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 |
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. |