2023-12-07 03:40:01 +00:00
# data-structure-typed
2023-09-22 03:20:33 +00:00
2023-11-09 12:48:06 +00:00
![npm ](https://img.shields.io/npm/dm/data-structure-typed )
2024-01-06 09:50:00 +00:00
![GitHub contributors ](https://img.shields.io/github/contributors/zrwusa/data-structure-typed )
2023-10-10 09:22:18 +00:00
![npm package minimized gzipped size (select exports) ](https://img.shields.io/bundlejs/size/data-structure-typed )
2023-11-10 15:50:57 +00:00
![GitHub top language ](https://img.shields.io/github/languages/top/zrwusa/data-structure-typed )
2023-12-08 02:07:51 +00:00
![GITHUB Star ](https://img.shields.io/github/stars/zrwusa/data-structure-typed )
2023-11-10 15:50:57 +00:00
![eslint ](https://aleen42.github.io/badges/src/eslint.svg )
![NPM ](https://img.shields.io/npm/l/data-structure-typed )
2024-01-06 09:50:00 +00:00
![npm ](https://img.shields.io/npm/v/data-structure-typed )
2023-10-10 09:22:18 +00:00
2023-11-10 15:50:57 +00:00
[//]: # (![npm bundle size]( https://img.shields.io/bundlephobia/min/data-structure-typed) )
2023-10-10 09:22:18 +00:00
2023-12-29 08:42:20 +00:00
[//]: # (< p > < a href = "https://github.com/zrwusa/data-structure-typed/blob/main/README.md" > English< / a > | < a href = "https://github.com/zrwusa/data-structure-typed/blob/main/README_zh-CN.md" > 简体中文< / a > < / p > )
2023-10-10 14:18:39 +00:00
2023-12-07 07:37:50 +00:00
## Why
2023-11-25 12:59:34 +00:00
Do you envy C++ with [STL]() (std::), Python with [collections](), and Java with [java.util]() ? Well, no need to envy
2024-01-09 04:04:50 +00:00
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
2023-10-10 14:18:39 +00:00
2023-09-22 02:40:12 +00:00
2023-12-08 01:04:49 +00:00
[//]: # (![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) )
2023-12-07 06:03:58 +00:00
2024-01-09 04:04:50 +00:00
### Data structures available
2023-12-07 06:03:58 +00:00
2024-01-09 04:04:50 +00:00
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.
2023-12-07 06:03:58 +00:00
2024-01-09 04:04:50 +00:00
### Performance
2023-12-07 06:03:58 +00:00
2024-01-09 04:04:50 +00:00
Performance surpasses that of native JS/TS
2023-12-08 01:15:29 +00:00
2023-12-07 06:03:58 +00:00
< table style = "display: table; width:100%; table-layout: fixed;" >
< thead >
< tr >
2023-12-08 01:04:49 +00:00
< th > Method< / th >
2023-12-30 03:49:59 +00:00
< th > Time Taken< / th >
< th > Data Scale< / th >
2023-12-08 01:15:29 +00:00
< th > Belongs To< / th >
2023-12-30 03:49:59 +00:00
< th > Complexity< / th >
2023-12-07 06:03:58 +00:00
< / tr >
< / thead >
< tbody >
< tr >
2023-12-08 01:04:49 +00:00
< td > Queue.push & shift< / td >
2023-12-30 03:49:59 +00:00
< td > 5.83 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 100,000< / td >
2023-12-30 03:49:59 +00:00
< td > Ours< / td >
2023-12-29 13:50:20 +00:00
< td > O(1)< / td >
2023-12-07 06:03:58 +00:00
< / tr >
< tr >
2023-12-08 01:15:29 +00:00
< td > Array.push & shift< / td >
2023-12-30 03:49:59 +00:00
< td > 2829.59 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 100,000< / td >
2023-12-08 01:15:29 +00:00
< td > Native JS< / td >
2023-12-29 13:50:20 +00:00
< td > O(n)< / td >
2023-12-07 06:03:58 +00:00
< / tr >
2023-12-08 01:15:29 +00:00
< tr >
2023-12-08 01:04:49 +00:00
< td > Deque.unshift & shift< / td >
2023-12-30 03:49:59 +00:00
< td > 2.44 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 100,000< / td >
2023-12-30 03:49:59 +00:00
< td > Ours< / td >
2023-12-29 13:50:20 +00:00
< td > O(1)< / td >
2023-12-07 06:03:58 +00:00
< / tr >
< tr >
2023-12-08 01:15:29 +00:00
< td > Array.unshift & shift< / td >
2023-12-30 03:49:59 +00:00
< td > 4750.37 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 100,000< / td >
2023-12-08 01:15:29 +00:00
< td > Native JS< / td >
2023-12-29 13:50:20 +00:00
< td > O(n)< / td >
2023-12-07 06:03:58 +00:00
< / tr >
2023-12-08 01:15:29 +00:00
< tr >
< td > HashMap.set< / td >
2023-12-30 03:49:59 +00:00
< td > 122.51 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 1,000,000< / td >
2023-12-30 03:49:59 +00:00
< td > Ours< / td >
2023-12-29 13:50:20 +00:00
< td > O(1)< / td >
2023-12-08 01:15:29 +00:00
< / tr >
< tr >
< td > Map.set< / td >
2023-12-30 03:49:59 +00:00
< td > 223.80 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 1,000,000< / td >
2023-12-08 01:15:29 +00:00
< td > Native JS< / td >
2023-12-29 13:50:20 +00:00
< td > O(1)< / td >
2023-12-08 01:15:29 +00:00
< / tr >
< tr >
< td > Set.add< / td >
2023-12-30 03:49:59 +00:00
< td > 185.06 ms< / td >
2023-12-08 01:04:49 +00:00
< td > 1,000,000< / td >
2023-12-08 01:15:29 +00:00
< td > Native JS< / td >
2023-12-29 13:50:20 +00:00
< td > O(1)< / td >
2023-12-08 01:15:29 +00:00
< / tr >
2023-12-08 01:04:49 +00:00
< / tbody >
< / table >
2023-10-05 02:37:42 +00:00
2024-01-09 04:04:50 +00:00
### Conciseness and uniformity
In Java.utils, you need to memorize a table for all sequential data structures(Queue, Deque, LinkedList),
< table >
< thead >
< tr >
< th > Java ArrayList< / th >
< th > Java Queue< / th >
< th > Java ArrayDeque< / th >
< th > Java LinkedList< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > add< / td >
< td > offer< / td >
< td > push< / td >
< td > push< / td >
< / tr >
< tr >
< td > remove< / td >
< td > poll< / td >
< td > removeLast< / td >
< td > removeLast< / td >
< / tr >
< tr >
< td > remove< / td >
< td > poll< / td >
< td > removeFirst< / td >
< td > removeFirst< / td >
< / tr >
< tr >
< td > add(0, element)< / td >
< td > offerFirst< / td >
< td > unshift< / td >
< td > unshift< / td >
< / tr >
< / tbody >
< / table >
whereas in our data-structure-typed, you **only** need to remember four methods: `push` , `pop` , `shift` , and `unshift` for all sequential data structures.
2023-09-22 03:20:33 +00:00
## Installation and Usage
2023-09-24 13:31:09 +00:00
2023-08-30 16:50:23 +00:00
### npm
2023-09-24 13:31:09 +00:00
2023-08-30 16:50:23 +00:00
```bash
2023-11-22 13:29:44 +00:00
npm i data-structure-typed --save
2023-08-30 16:50:23 +00:00
```
2023-09-24 13:31:09 +00:00
2023-08-28 12:04:43 +00:00
### yarn
2023-09-24 13:31:09 +00:00
2023-08-28 12:04:43 +00:00
```bash
2023-09-12 03:10:09 +00:00
yarn add data-structure-typed
2023-08-28 12:04:43 +00:00
```
2023-09-24 13:31:09 +00:00
2023-10-05 02:37:42 +00:00
```js
import {
2023-12-29 13:50:20 +00:00
Heap, Graph, Queue, Deque, PriorityQueue, BST, Trie, DoublyLinkedList,
2024-01-08 14:22:41 +00:00
AVLTree, SinglyLinkedList, DirectedGraph, RedBlackTree, TreeMultiMap,
2023-12-29 13:50:20 +00:00
DirectedVertex, Stack, AVLTreeNode
2023-10-05 02:37:42 +00:00
} from 'data-structure-typed';
```
2023-11-17 02:47:13 +00:00
## Vivid Examples
2023-12-29 08:42:20 +00:00
### AVL Tree
2023-11-16 13:43:45 +00:00
2023-11-25 12:59:34 +00:00
[Try it out ](https://vivid-algorithm.vercel.app/ ), or you can run your own code using
our [visual tool ](https://github.com/zrwusa/vivid-algorithm )
2023-11-16 13:43:45 +00:00
2023-09-18 14:04:39 +00:00
![](https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/examples/videos/webp_output/avl-tree-test.webp)
2023-11-16 13:43:45 +00:00
2023-11-17 02:47:13 +00:00
### Tree Multi Map
2023-11-25 12:59:34 +00:00
2023-11-22 11:00:06 +00:00
[Try it out ](https://vivid-algorithm.vercel.app/ )
2023-11-16 13:43:45 +00:00
![](https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/examples/videos/webp_output/tree-multiset-test.webp)
2023-11-17 02:47:13 +00:00
### Directed Graph
2023-11-25 12:59:34 +00:00
2023-11-22 11:00:06 +00:00
[Try it out ](https://vivid-algorithm.vercel.app/algorithm/graph/ )
2023-11-16 13:43:45 +00:00
2023-09-18 14:04:39 +00:00
![](https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/examples/videos/webp_output/directed-graph-test.webp)
2023-11-16 13:43:45 +00:00
2023-11-17 02:47:13 +00:00
### Map Graph
2023-11-25 12:59:34 +00:00
2023-11-22 11:00:06 +00:00
[Try it out ](https://vivid-algorithm.vercel.app/algorithm/graph/ )
2023-11-16 13:43:45 +00:00
2023-09-18 14:04:39 +00:00
![](https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/examples/videos/webp_output/map-graph-test.webp)
2023-09-09 15:49:53 +00:00
2023-11-08 12:25:02 +00:00
## Code Snippets
2023-09-24 13:31:09 +00:00
2023-12-29 13:50:20 +00:00
### Red Black Tree snippet
2023-09-24 13:31:09 +00:00
2023-08-28 12:04:43 +00:00
#### TS
2023-09-24 13:31:09 +00:00
2023-12-21 02:01:04 +00:00
```ts
2024-01-09 04:04:50 +00:00
import { RedBlackTree } from 'data-structure-typed';
2023-12-21 02:01:04 +00:00
const rbTree = new RedBlackTree< number > ();
rbTree.addMany([11, 3, 15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5])
rbTree.isAVLBalanced(); // true
rbTree.delete(10);
rbTree.isAVLBalanced(); // true
rbTree.print()
// ___6________
// / \
// ___4_ ___11________
// / \ / \
// _2_ 5 _8_ ____14__
// / \ / \ / \
// 1 3 7 9 12__ 15__
// \ \
// 13 16
```
#### JS
```js
2024-01-09 04:04:50 +00:00
import { RedBlackTree } from 'data-structure-typed';
2023-12-21 02:01:04 +00:00
const rbTree = new RedBlackTree();
rbTree.addMany([11, 3, 15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5])
rbTree.isAVLBalanced(); // true
rbTree.delete(10);
rbTree.isAVLBalanced(); // true
rbTree.print()
// ___6________
// / \
// ___4_ ___11________
// / \ / \
// _2_ 5 _8_ ____14__
// / \ / \ / \
// 1 3 7 9 12__ 15__
// \ \
// 13 16
```
2023-11-25 14:49:54 +00:00
### Free conversion between data structures.
```js
const orgArr = [6, 1, 2, 7, 5, 3, 4, 9, 8];
const orgStrArr = ["trie", "trial", "trick", "trip", "tree", "trend", "triangle", "track", "trace", "transmit"];
2023-12-29 08:42:20 +00:00
const entries = [[6, "6"], [1, "1"], [2, "2"], [7, "7"], [5, "5"], [3, "3"], [4, "4"], [9, "9"], [8, "8"]];
2023-11-25 14:49:54 +00:00
const queue = new Queue(orgArr);
2024-01-09 04:04:50 +00:00
queue.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const deque = new Deque(orgArr);
2024-01-09 04:04:50 +00:00
deque.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const sList = new SinglyLinkedList(orgArr);
2024-01-09 04:04:50 +00:00
sList.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const dList = new DoublyLinkedList(orgArr);
2024-01-09 04:04:50 +00:00
dList.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const stack = new Stack(orgArr);
2024-01-09 04:04:50 +00:00
stack.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const minHeap = new MinHeap(orgArr);
2024-01-09 04:04:50 +00:00
minHeap.print();
2023-11-27 02:12:15 +00:00
// [1, 5, 2, 7, 6, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const maxPQ = new MaxPriorityQueue(orgArr);
2024-01-09 04:04:50 +00:00
maxPQ.print();
2023-11-27 02:12:15 +00:00
// [9, 8, 4, 7, 5, 2, 3, 1, 6]
2023-11-25 14:49:54 +00:00
const biTree = new BinaryTree(entries);
biTree.print();
2023-11-27 02:12:15 +00:00
// ___6___
// / \
// ___1_ _2_
// / \ / \
// _7_ 5 3 4
// / \
// 9 8
2023-11-25 14:49:54 +00:00
const bst = new BST(entries);
bst.print();
2023-11-27 02:12:15 +00:00
// _____5___
// / \
// _2_ _7_
// / \ / \
// 1 3_ 6 8_
// \ \
// 4 9
2023-11-25 14:49:54 +00:00
const rbTree = new RedBlackTree(entries);
rbTree.print();
2023-11-27 02:12:15 +00:00
// ___4___
// / \
// _2_ _6___
// / \ / \
// 1 3 5 _8_
// / \
// 7 9
2023-11-25 14:49:54 +00:00
const avl = new AVLTree(entries);
avl.print();
2023-11-27 02:12:15 +00:00
// ___4___
// / \
// _2_ _6___
// / \ / \
// 1 3 5 _8_
// / \
// 7 9
2023-11-25 14:49:54 +00:00
2024-01-08 14:22:41 +00:00
const treeMulti = new TreeMultiMap(entries);
2023-11-25 14:49:54 +00:00
treeMulti.print();
2023-11-27 02:12:15 +00:00
// ___4___
// / \
// _2_ _6___
// / \ / \
// 1 3 5 _8_
// / \
// 7 9
2023-11-25 14:49:54 +00:00
const hm = new HashMap(entries);
2024-01-09 04:04:50 +00:00
hm.print()
2023-12-29 08:42:20 +00:00
// [[6, "6"], [1, "1"], [2, "2"], [7, "7"], [5, "5"], [3, "3"], [4, "4"], [9, "9"], [8, "8"]]
2023-11-27 02:12:15 +00:00
2023-11-25 14:49:54 +00:00
const rbTreeH = new RedBlackTree(hm);
rbTreeH.print();
2023-11-27 02:12:15 +00:00
// ___4___
// / \
// _2_ _6___
// / \ / \
// 1 3 5 _8_
// / \
// 7 9
2023-11-25 14:49:54 +00:00
const pq = new MinPriorityQueue(orgArr);
2024-01-09 04:04:50 +00:00
pq.print();
2023-11-27 02:12:15 +00:00
// [1, 5, 2, 7, 6, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const bst1 = new BST(pq);
bst1.print();
2023-11-27 02:12:15 +00:00
// _____5___
// / \
// _2_ _7_
// / \ / \
// 1 3_ 6 8_
// \ \
// 4 9
2023-11-25 14:49:54 +00:00
const dq1 = new Deque(orgArr);
2024-01-09 04:04:50 +00:00
dq1.print();
2023-11-27 02:12:15 +00:00
// [6, 1, 2, 7, 5, 3, 4, 9, 8]
2023-11-25 14:49:54 +00:00
const rbTree1 = new RedBlackTree(dq1);
rbTree1.print();
2023-11-27 02:12:15 +00:00
// _____5___
// / \
// _2___ _7___
// / \ / \
// 1 _4 6 _9
// / /
// 3 8
2023-11-25 14:49:54 +00:00
const trie2 = new Trie(orgStrArr);
2024-01-09 04:04:50 +00:00
trie2.print();
2023-11-27 02:12:15 +00:00
// ['trie', 'trial', 'triangle', 'trick', 'trip', 'tree', 'trend', 'track', 'trace', 'transmit']
2023-11-25 14:49:54 +00:00
const heap2 = new Heap(trie2, { comparator: (a, b) => Number(a) - Number(b) });
2024-01-09 04:04:50 +00:00
heap2.print();
2023-11-27 02:12:15 +00:00
// ['transmit', 'trace', 'tree', 'trend', 'track', 'trial', 'trip', 'trie', 'trick', 'triangle']
2023-11-25 14:49:54 +00:00
const dq2 = new Deque(heap2);
2024-01-09 04:04:50 +00:00
dq2.print();
2023-11-27 02:12:15 +00:00
// ['transmit', 'trace', 'tree', 'trend', 'track', 'trial', 'trip', 'trie', 'trick', 'triangle']
2023-11-25 14:49:54 +00:00
const entries2 = dq2.map((el, i) => [i, el]);
const avl2 = new AVLTree(entries2);
avl2.print();
2023-11-27 02:12:15 +00:00
// ___3_______
// / \
// _1_ ___7_
// / \ / \
// 0 2 _5_ 8_
// / \ \
// 4 6 9
2023-08-28 12:04:43 +00:00
```
2023-09-18 14:04:39 +00:00
2023-12-29 08:42:20 +00:00
### Binary Search Tree (BST) snippet
```ts
2024-01-09 04:04:50 +00:00
import { BST, BSTNode } from 'data-structure-typed';
2023-12-29 08:42:20 +00:00
const bst = new BST< number > ();
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.getNode(6); // BSTNode
bst.getHeight(6) === 2; // true
bst.getHeight() === 5; // true
bst.getDepth(6) === 3; // true
bst.getLeftMost()?.key === 1; // true
bst.delete(6);
bst.get(6); // undefined
bst.isAVLBalanced(); // true
bst.bfs()[0] === 11; // true
bst.print()
// ______________11_____
// / \
// ___3_______ _13_____
// / \ / \
// 1_ _____8____ 12 _15__
// \ / \ / \
// 2 4_ _10 14 16
// \ /
// 5_ 9
// \
// 7
2024-01-09 04:04:50 +00:00
const objBST = new BST< number , { height: number , age: number } > ();
2023-12-29 08:42:20 +00:00
objBST.add(11, { "name": "Pablo", "age": 15 });
objBST.add(3, { "name": "Kirk", "age": 1 });
objBST.addMany([15, 1, 8, 13, 16, 2, 6, 9, 12, 14, 4, 7, 10, 5], [
{ "name": "Alice", "age": 15 },
{ "name": "Bob", "age": 1 },
{ "name": "Charlie", "age": 8 },
{ "name": "David", "age": 13 },
{ "name": "Emma", "age": 16 },
{ "name": "Frank", "age": 2 },
{ "name": "Grace", "age": 6 },
{ "name": "Hannah", "age": 9 },
{ "name": "Isaac", "age": 12 },
{ "name": "Jack", "age": 14 },
{ "name": "Katie", "age": 4 },
{ "name": "Liam", "age": 7 },
{ "name": "Mia", "age": 10 },
{ "name": "Noah", "age": 5 }
]
);
objBST.delete(11);
```
### AVLTree snippet
```ts
2024-01-09 04:04:50 +00:00
import { AVLTree } from 'data-structure-typed';
2023-12-29 08:42:20 +00:00
const avlTree = new AVLTree< number > ();
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
2024-01-09 04:04:50 +00:00
import { DirectedGraph } from 'data-structure-typed';
2023-12-29 08:42:20 +00:00
const graph = new DirectedGraph< string > ();
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 topologicalOrderKeys = graph.topologicalSort(); // ['A', 'B', 'C']
```
### Undirected Graph snippet
```ts
2024-01-09 04:04:50 +00:00
import { UndirectedGraph } from 'data-structure-typed';
2023-12-29 08:42:20 +00:00
const graph = new UndirectedGraph< string > ();
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.key) // ['A', 'B', 'D']
```
2023-11-09 09:47:02 +00:00
## API docs & Examples
[API Docs ](https://data-structure-typed-docs.vercel.app )
[Live Examples ](https://vivid-algorithm.vercel.app )
< a href = "https://github.com/zrwusa/vivid-algorithm" target = "_blank" > Examples Repository< / a >
2023-08-16 16:50:14 +00:00
## Data Structures
2023-09-24 13:31:09 +00:00
2023-11-27 02:12:15 +00:00
< table style = "display: table; width:100%; table-layout: fixed;" >
2023-08-22 14:50:16 +00:00
< thead >
< tr >
< th > Data Structure< / th >
< th > Unit Test< / th >
< th > Performance Test< / th >
2023-11-22 11:00:06 +00:00
< th > API Docs< / th >
2023-08-22 14:50:16 +00:00
< / tr >
< / thead >
< tbody >
< tr >
< td > Binary Tree< / td >
2023-09-09 15:49:53 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/BinaryTree.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
< td > Binary Search Tree (BST)< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/BST.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
< td > AVL Tree< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/AVLTree.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-06 03:01:32 +00:00
< td > Red Black Tree< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/RedBlackTree.html" > < span > View< / span > < / a > < / td >
2023-11-06 03:01:32 +00:00
< / tr >
< tr >
2023-12-07 02:47:50 +00:00
< td > Tree Multimap< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2024-01-08 14:22:41 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/TreeMultiMap.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Heap< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/Heap.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Priority Queue< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/PriorityQueue.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Max Priority Queue< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/MaxPriorityQueue.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Min Priority Queue< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/MinPriorityQueue.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Trie< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/Trie.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Graph< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/AbstractGraph.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Directed Graph< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-06 03:01:32 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/DirectedGraph.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Undirected Graph< / td >
2023-11-06 03:01:32 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/UndirectedGraph.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Queue< / td >
2023-11-06 03:01:32 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/Queue.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Deque< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/Deque.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-12-02 14:29:00 +00:00
< td > Hash Map< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/HashMap.html" > < span > View< / span > < / a > < / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Linked List< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/SinglyLinkedList.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Singly Linked List< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/SinglyLinkedList.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Doubly Linked List< / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/DoublyLinkedList.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Stack< / td >
2023-11-06 03:01:32 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-08-22 14:50:16 +00:00
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
2023-11-27 05:38:26 +00:00
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/Stack.html" > < span > View< / span > < / a > < / td >
2023-08-22 14:50:16 +00:00
< / tr >
2023-12-07 02:47:50 +00:00
< tr >
< td > Segment Tree< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < / td >
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/SegmentTree.html" > < span > View< / span > < / a > < / td >
< / tr >
< tr >
< td > Binary Indexed Tree< / td >
< td > < img src = "https://raw.githubusercontent.com/zrwusa/assets/master/images/data-structure-typed/assets/tick.svg" alt = "" > < / td >
< td > < / td >
< td > < a href = "https://data-structure-typed-docs.vercel.app/classes/BinaryIndexedTree.html" > < span > View< / span > < / a > < / td >
< / tr >
2023-08-22 14:50:16 +00:00
< / tbody >
< / table >
2023-12-21 02:01:04 +00:00
## The corresponding relationships between data structures in different language standard libraries.
2023-09-26 09:09:28 +00:00
2023-11-27 02:12:15 +00:00
< table style = "display: table; width:100%; table-layout: fixed;" >
2023-09-26 09:09:28 +00:00
< thead >
2023-10-10 09:22:18 +00:00
< tr >
< th > Data Structure Typed< / th >
2023-11-03 17:21:30 +00:00
< th > C++ STL< / th >
2023-10-10 09:22:18 +00:00
< th > java.util< / th >
< th > Python collections< / th >
< / tr >
2023-09-26 09:09:28 +00:00
< / thead >
< tbody >
2023-10-10 09:22:18 +00:00
< tr >
2023-11-22 11:00:06 +00:00
< td > Heap< E> < / td >
2023-12-21 02:01:04 +00:00
< td > -< / td >
< td > -< / td >
< td > heapq< / td >
< / tr >
< tr >
< td > PriorityQueue< E> < / td >
2023-11-22 11:00:06 +00:00
< td > priority_queue< T> < / td >
< td > PriorityQueue< E> < / td >
2023-12-21 02:01:04 +00:00
< td > -< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Deque< E> < / td >
< td > deque< T> < / td >
< td > ArrayDeque< E> < / td >
< td > deque< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
< td > Queue< E> < / td >
< td > queue< T> < / td >
< td > Queue< E> < / td >
< td > -< / td >
< / tr >
2023-11-08 12:25:02 +00:00
< tr >
2023-11-22 11:00:06 +00:00
< td > HashMap< K, V> < / td >
< td > unordered_map< K, V> < / td >
< td > HashMap< K, V> < / td >
< td > defaultdict< / td >
< / tr >
< tr >
< td > DoublyLinkedList< E> < / td >
< td > list< T> < / td >
< td > LinkedList< E> < / td >
2023-11-08 12:25:02 +00:00
< td > -< / td >
< / tr >
2023-10-10 09:22:18 +00:00
< tr >
2023-11-22 11:00:06 +00:00
< td > SinglyLinkedList< E> < / td >
< td > -< / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > BinaryTree< K, V> < / td >
< td > -< / td >
< td > -< / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > BST< K, V> < / td >
< td > -< / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > RedBlackTree< E> < / td >
2023-11-08 12:25:02 +00:00
< td > set< T> < / td >
2023-11-22 11:00:06 +00:00
< td > TreeSet< E> < / td >
< td > -< / td >
2023-11-08 12:25:02 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > RedBlackTree< K, V> < / td >
2023-11-08 12:25:02 +00:00
< td > map< K, V> < / td >
2023-11-22 11:00:06 +00:00
< td > TreeMap< K, V> < / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
2024-01-08 14:22:41 +00:00
< td > TreeMultiMap< K, V> < / td >
2023-11-22 11:00:06 +00:00
< td > multimap< K, V> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
2024-01-08 14:22:41 +00:00
< td > TreeMultiMap< E> < / td >
2023-11-22 11:00:06 +00:00
< td > multiset< T> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Trie< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > DirectedGraph< V, E> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > UndirectedGraph< V, E> < / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > PriorityQueue< E> < / td >
< td > priority_queue< T> < / td >
< td > PriorityQueue< E> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Array< E> < / td >
< td > vector< T> < / td >
< td > ArrayList< E> < / td >
< td > list< / td >
2023-11-08 12:25:02 +00:00
< / tr >
< tr >
2023-11-22 11:00:06 +00:00
< td > Stack< E> < / td >
< td > stack< T> < / td >
< td > Stack< E> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< / tr >
< tr >
2023-12-07 02:47:50 +00:00
< td > HashMap< E> < / td >
2023-11-22 11:00:06 +00:00
< td > unordered_set< T> < / td >
< td > HashSet< E> < / td >
2023-12-07 02:47:50 +00:00
< td > set< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
< td > -< / td >
2023-11-08 12:25:02 +00:00
< td > unordered_multiset< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
2023-11-08 12:25:02 +00:00
< td > Counter< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
2023-12-02 14:21:13 +00:00
< td > LinkedHashMap< K, V> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
2023-11-08 12:25:02 +00:00
< td > LinkedHashMap< K, V> < / td >
2023-12-07 02:47:50 +00:00
< td > OrderedDict< / td >
2023-10-10 09:22:18 +00:00
< / tr >
< tr >
< td > -< / td >
2023-11-08 12:25:02 +00:00
< td > unordered_multimap< K, V> < / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< td > -< / td >
< / tr >
< tr >
< td > -< / td >
2023-11-08 12:25:02 +00:00
< td > bitset< N> < / td >
< td > -< / td >
2023-10-10 09:22:18 +00:00
< td > -< / td >
< / tr >
2023-09-26 09:09:28 +00:00
< / tbody >
< / table >
2023-11-21 06:16:06 +00:00
## Built-in classic algorithms
2023-11-27 02:12:15 +00:00
< table style = "display: table; width:100%; table-layout: fixed;" >
2023-11-21 06:16:06 +00:00
< thead >
< tr >
< th > Algorithm< / th >
< th > Function Description< / th >
< th > Iteration Type< / th >
< / tr >
< / thead >
< tbody >
< tr >
< td > Binary Tree DFS< / td >
< td > 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.
< / td >
< td > Recursion + Iteration< / td >
< / tr >
< tr >
< td > Binary Tree BFS< / td >
< td > Traverse a binary tree in a breadth-first manner, starting from the root node, visiting nodes level by level
from left to right.
< / td >
< td > Iteration< / td >
< / tr >
< tr >
< td > Graph DFS< / td >
< td > 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.
< / td >
< td > Recursion + Iteration< / td >
< / tr >
< tr >
< td > Binary Tree Morris< / td >
< td > 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.
< / td >
< td > Iteration< / td >
< / tr >
< tr >
< td > Graph BFS< / td >
< td > 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.
< / td >
< td > Recursion + Iteration< / td >
< / tr >
< tr >
< td > Graph Tarjan's Algorithm< / td >
< td > Find strongly connected components in a graph, typically implemented using depth-first search.< / td >
< td > Recursion< / td >
< / tr >
< tr >
< td > Graph Bellman-Ford Algorithm< / td >
< td > Finding the shortest paths from a single source, can handle negative weight edges< / td >
< td > Iteration< / td >
< / tr >
< tr >
< td > Graph Dijkstra's Algorithm< / td >
< td > Finding the shortest paths from a single source, cannot handle negative weight edges< / td >
< td > Iteration< / td >
< / tr >
< tr >
< td > Graph Floyd-Warshall Algorithm< / td >
< td > Finding the shortest paths between all pairs of nodes< / td >
< td > Iteration< / td >
< / tr >
< tr >
< td > Graph getCycles< / td >
< td > Find all cycles in a graph or detect the presence of cycles.< / td >
< td > Recursion< / td >
< / tr >
< tr >
2024-01-07 14:25:25 +00:00
< td > Graph getCutVertices< / td >
2023-11-21 06:16:06 +00:00
< td > Find cut vertices in a graph, which are nodes that, when removed, increase the number of connected components in
the graph.
< / td >
< td > Recursion< / td >
< / tr >
< tr >
< td > Graph getSCCs< / td >
< td > Find strongly connected components in a graph, which are subgraphs where any two nodes can reach each other.
< / td >
< td > Recursion< / td >
< / tr >
< tr >
< td > Graph getBridges< / td >
< td > Find bridges in a graph, which are edges that, when removed, increase the number of connected components in the
graph.
< / td >
< td > Recursion< / td >
< / tr >
< tr >
< td > Graph topologicalSort< / td >
< td > 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.
< / td >
< td > Recursion< / td >
< / tr >
< / tbody >
< / table >
2023-11-17 02:47:13 +00:00
2023-11-20 07:14:13 +00:00
## Software Engineering Design Standards
2023-11-25 12:59:34 +00:00
2024-01-09 04:04:50 +00:00
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.
2023-12-24 09:54:51 +00:00
2023-11-27 02:12:15 +00:00
< table style = "display: table; width:100%; table-layout: fixed;" >
2023-11-20 07:14:13 +00:00
< tr >
< th > Principle< / th >
< th > Description< / th >
< / tr >
< tr >
< td > Practicality< / td >
< td > Follows ES6 and ESNext standards, offering unified and considerate optional parameters, and simplifies method names.< / td >
< / tr >
< tr >
< td > Extensibility< / td >
< td > Adheres to OOP (Object-Oriented Programming) principles, allowing inheritance for all data structures.< / td >
< / tr >
< tr >
< td > Modularization< / td >
< td > Includes data structure modularization and independent NPM packages.< / td >
< / tr >
< tr >
< td > Efficiency< / td >
< td > All methods provide time and space complexity, comparable to native JS performance.< / td >
< / tr >
< tr >
< td > Maintainability< / td >
< td > Follows open-source community development standards, complete documentation, continuous integration, and adheres to TDD (Test-Driven Development) patterns.< / td >
< / tr >
< tr >
< td > Testability< / td >
< td > Automated and customized unit testing, performance testing, and integration testing.< / td >
< / tr >
< tr >
< td > Portability< / td >
< td > Plans for porting to Java, Python, and C++, currently achieved to 80%.< / td >
< / tr >
< tr >
< td > Reusability< / td >
< td > Fully decoupled, minimized side effects, and adheres to OOP.< / td >
< / tr >
< tr >
< td > Security< / td >
< td > Carefully designed security for member variables and methods. Read-write separation. Data structure software does not need to consider other security aspects.< / td >
< / tr >
< tr >
< td > Scalability< / td >
< td > Data structure software does not involve load issues.< / td >
< / tr >
< / table >
2023-11-21 06:16:06 +00:00
2023-12-08 02:07:51 +00:00
## Benchmark
2024-01-09 07:57:30 +00:00
macOS Big Sur
Version 11.7.9
MacBook Pro (15-inch, 2018)
Processor 2.2 GHz 6-Core Intel Core i7
Memory 16 GB 2400 MHz DDR4
Graphics Radeon Pro 555X 4 GB
Intel UHD Graphics 630 1536 MB
2023-12-08 02:07:51 +00:00
[//]: # (No deletion!!! Start of Replace Section)
< div class = "json-to-html-collapse clearfix 0" >
2024-01-09 07:57:30 +00:00
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > heap< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 100,000 add< / td > < td > 6.42< / td > < td > 155.87< / td > < td > 1.90e-4< / td > < / tr > < tr > < td > 100,000 add & poll< / td > < td > 31.50< / td > < td > 31.74< / td > < td > 8.72e-4< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > rb-tree< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 100,000 add orderly< / td > < td > 42.46< / td > < td > 23.55< / td > < td > 0.01< / td > < / tr > < tr > < td > 100,000 delete orderly< / td > < td > 176.04< / td > < td > 5.68< / td > < td > 0.01< / td > < / tr > < tr > < td > 100,000 add randomly< / td > < td > 98.02< / td > < td > 10.20< / td > < td > 0.00< / td > < / tr > < tr > < td > 100,000 delete randomly< / td > < td > 182.58< / td > < td > 5.48< / td > < td > 0.00< / td > < / tr > < tr > < td > 100,000 add orderly< / td > < td > 42.10< / td > < td > 23.76< / td > < td > 8.79e-4< / td > < / tr > < tr > < td > 100,000 delete randomly< / td > < td > 182.16< / td > < td > 5.49< / td > < td > 5.65e-4< / td > < / tr > < tr > < td > 100,000 getNode randomly< / td > < td > 180.63< / td > < td > 5.54< / td > < td > 0.00< / td > < / tr > < tr > < td > 100,000 add & iterator< / td > < td > 129.92< / td > < td > 7.70< / td > < td > 0.00< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
2024-01-09 07:57:30 +00:00
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > queue< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 push< / td > < td > 44.33< / td > < td > 22.56< / td > < td > 0.01< / td > < / tr > < tr > < td > 100,000 push & shift< / td > < td > 4.68< / td > < td > 213.63< / td > < td > 1.41e-4< / td > < / tr > < tr > < td > Native JS Array 100,000 push & shift< / td > < td > 2633.11< / td > < td > 0.38< / td > < td > 0.44< / td > < / tr > < / table > < / div >
2024-01-09 07:57:30 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > deque< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 push< / td > < td > 24.62< / td > < td > 40.62< / td > < td > 0.00< / td > < / tr > < tr > < td > 1,000,000 push & pop< / td > < td > 30.71< / td > < td > 32.56< / td > < td > 0.00< / td > < / tr > < tr > < td > 1,000,000 push & shift< / td > < td > 31.93< / td > < td > 31.32< / td > < td > 0.01< / td > < / tr > < tr > < td > 100,000 push & shift< / td > < td > 3.25< / td > < td > 307.22< / td > < td > 2.74e-4< / td > < / tr > < tr > < td > Native JS Array 100,000 push & shift< / td > < td > 2455.51< / td > < td > 0.41< / td > < td > 0.29< / td > < / tr > < tr > < td > 100,000 unshift & shift< / td > < td > 2.94< / td > < td > 340.31< / td > < td > 2.39e-4< / td > < / tr > < tr > < td > Native JS Array 100,000 unshift & shift< / td > < td > 4314.20< / td > < td > 0.23< / td > < td > 0.41< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > hash-map< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 set< / td > < td > 116.60< / td > < td > 8.58< / td > < td > 0.02< / td > < / tr > < tr > < td > Native JS Map 1,000,000 set< / td > < td > 202.39< / td > < td > 4.94< / td > < td > 0.01< / td > < / tr > < tr > < td > Native JS Set 1,000,000 add< / td > < td > 167.89< / td > < td > 5.96< / td > < td > 0.01< / td > < / tr > < tr > < td > 1,000,000 set & get< / td > < td > 125.21< / td > < td > 7.99< / td > < td > 0.03< / td > < / tr > < tr > < td > Native JS Map 1,000,000 set & get< / td > < td > 272.20< / td > < td > 3.67< / td > < td > 0.03< / td > < / tr > < tr > < td > Native JS Set 1,000,000 add & has< / td > < td > 168.51< / td > < td > 5.93< / td > < td > 0.01< / td > < / tr > < tr > < td > 1,000,000 ObjKey set & get< / td > < td > 309.10< / td > < td > 3.24< / td > < td > 0.01< / td > < / tr > < tr > < td > Native JS Map 1,000,000 ObjKey set & get< / td > < td > 299.43< / td > < td > 3.34< / td > < td > 0.03< / td > < / tr > < tr > < td > Native JS Set 1,000,000 ObjKey add & has< / td > < td > 260.93< / td > < td > 3.83< / td > < td > 0.02< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
2024-01-09 07:57:30 +00:00
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > trie< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 100,000 push< / td > < td > 43.32< / td > < td > 23.08< / td > < td > 6.16e-4< / td > < / tr > < tr > < td > 100,000 getWords< / td > < td > 84.84< / td > < td > 11.79< / td > < td > 0.00< / td > < / tr > < / table > < / div >
2024-01-09 07:57:30 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > avl-tree< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 10,000 add randomly< / td > < td > 129.04< / td > < td > 7.75< / td > < td > 0.00< / td > < / tr > < tr > < td > 10,000 get< / td > < td > 51.31< / td > < td > 19.49< / td > < td > 5.76e-4< / td > < / tr > < tr > < td > 10,000 add & delete randomly< / td > < td > 190.44< / td > < td > 5.25< / td > < td > 0.00< / td > < / tr > < tr > < td > 10,000 addMany< / td > < td > 137.94< / td > < td > 7.25< / td > < td > 0.00< / td > < / tr > < / table > < / div >
2024-01-09 07:57:30 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > binary-tree-overall< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 10,000 RBTree add< / td > < td > 8.13< / td > < td > 122.97< / td > < td > 1.87e-4< / td > < / tr > < tr > < td > 10,000 RBTree add & delete randomly< / td > < td > 58.30< / td > < td > 17.15< / td > < td > 5.24e-4< / td > < / tr > < tr > < td > 10,000 RBTree get< / td > < td > 18.16< / td > < td > 55.06< / td > < td > 2.06e-4< / td > < / tr > < tr > < td > 10,000 AVLTree add< / td > < td > 129.10< / td > < td > 7.75< / td > < td > 0.00< / td > < / tr > < tr > < td > 10,000 AVLTree get< / td > < td > 51.37< / td > < td > 19.47< / td > < td > 7.26e-4< / td > < / tr > < tr > < td > 10,000 AVLTree add & delete randomly< / td > < td > 189.84< / td > < td > 5.27< / td > < td > 8.96e-4< / td > < / tr > < / table > < / div >
2024-01-09 07:57:30 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > directed-graph< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000 addVertex< / td > < td > 0.10< / td > < td > 9882.73< / td > < td > 1.12e-6< / td > < / tr > < tr > < td > 1,000 addEdge< / td > < td > 6.18< / td > < td > 161.76< / td > < td > 7.54e-4< / td > < / tr > < tr > < td > 1,000 getVertex< / td > < td > 0.05< / td > < td > 2.17e+4< / td > < td > 3.35e-7< / td > < / tr > < tr > < td > 1,000 getEdge< / td > < td > 23.36< / td > < td > 42.81< / td > < td > 0.00< / td > < / tr > < tr > < td > tarjan< / td > < td > 208.84< / td > < td > 4.79< / td > < td > 0.01< / td > < / tr > < tr > < td > topologicalSort< / td > < td > 178.78< / td > < td > 5.59< / td > < td > 0.00< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > doubly-linked-list< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 push< / td > < td > 217.73< / td > < td > 4.59< / td > < td > 0.05< / td > < / tr > < tr > < td > 1,000,000 unshift< / td > < td > 200.41< / td > < td > 4.99< / td > < td > 0.04< / td > < / tr > < tr > < td > 1,000,000 unshift & shift< / td > < td > 168.75< / td > < td > 5.93< / td > < td > 0.04< / td > < / tr > < tr > < td > 1,000,000 addBefore< / td > < td > 298.21< / td > < td > 3.35< / td > < td > 0.06< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > singly-linked-list< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 push & shift< / td > < td > 196.65< / td > < td > 5.09< / td > < td > 0.04< / td > < / tr > < tr > < td > 10,000 push & pop< / td > < td > 221.63< / td > < td > 4.51< / td > < td > 0.02< / td > < / tr > < tr > < td > 10,000 addBefore< / td > < td > 249.40< / td > < td > 4.01< / td > < td > 0.01< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > priority-queue< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 100,000 add< / td > < td > 28.95< / td > < td > 34.55< / td > < td > 0.00< / td > < / tr > < tr > < td > 100,000 add & poll< / td > < td > 76.25< / td > < td > 13.11< / td > < td > 6.57e-4< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div > < div class = "json-to-html-collapse clearfix 0" >
< div class = 'collapsible level0' > < span class = 'json-to-html-label' > stack< / span > < / div >
2024-01-11 12:28:51 +00:00
< div class = "content" > < table style = "display: table; width:100%; table-layout: fixed;" > < tr > < th > test name< / th > < th > time taken (ms)< / th > < th > executions per sec< / th > < th > sample deviation< / th > < / tr > < tr > < td > 1,000,000 push< / td > < td > 39.72< / td > < td > 25.18< / td > < td > 0.01< / td > < / tr > < tr > < td > 1,000,000 push & pop< / td > < td > 49.18< / td > < td > 20.33< / td > < td > 0.01< / td > < / tr > < / table > < / div >
2023-12-08 02:07:51 +00:00
< / div >
[//]: # (No deletion!!! End of Replace Section)
2023-12-29 08:42:20 +00:00
## supported module system
2024-01-09 04:04:50 +00:00
2023-12-29 08:42:20 +00:00
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.
#### development
```html
2024-01-09 04:04:50 +00:00
2023-12-29 08:42:20 +00:00
< script src = 'https://cdn.jsdelivr.net/npm/data-structure-typed/dist/umd/data-structure-typed.js' > < / script >
```
#### production
```html
2024-01-09 04:04:50 +00:00
2023-12-29 08:42:20 +00:00
< script src = 'https://cdn.jsdelivr.net/npm/data-structure-typed/dist/umd/data-structure-typed.min.js' > < / script >
```
Copy the code below into the script tag of your HTML, and you're good to go with your development.
```js
2024-01-09 04:04:50 +00:00
const { Heap } = dataStructureTyped;
2023-12-29 08:42:20 +00:00
const {
BinaryTree, Graph, Queue, Stack, PriorityQueue, BST, Trie, DoublyLinkedList,
2024-01-08 14:22:41 +00:00
AVLTree, MinHeap, SinglyLinkedList, DirectedGraph, TreeMultiMap,
2023-12-29 08:42:20 +00:00
DirectedVertex, AVLTreeNode
} = dataStructureTyped;
```