Find a file
2023-11-09 20:48:06 +08:00
.github [project] Integrate the CI commands into a single command and uniformly invoke this CI command across different platforms. 2023-10-18 16:05:55 +08:00
scripts [perf] renamed tree-multiset to tree-multimap 2023-11-08 09:26:43 +08:00
src refactor: Unified API parameters, streamline syntax, exclude methods already present in the parent class. 2023-11-09 20:25:54 +08:00
test refactor: Unified API parameters, streamline syntax, exclude methods already present in the parent class. 2023-11-09 20:25:54 +08:00
.auto-changelog [project] quality of package improved. v1.3.6 published 2023-09-21 14:40:39 +08:00
.auto-changelog-template.hbs [project] quality of package improved. v1.3.6 published 2023-09-21 14:40:39 +08:00
.dependency-cruiser.js [test] test coverage enriched to 90.37% 2023-10-29 21:52:27 +08:00
.editorconfig [binary-tree] The binary tree's BFS and level-order traversal results should be the same. However, for convenience, we provide an additional method called listLevels to display traversal results in levels. 2023-10-27 22:30:52 +08:00
.eslintrc.js [heap] fibonacci heap implemented. [test] big O estimate. [project] no-unused-vars config to warn 2023-10-21 01:59:10 +08:00
.gitattributes test coverage report supported. Code quality enhanced and support multiple environments such as ES6 (ESModule), ES5 (CommonJS), and a single file for both browser and Node.js environments (UMD). Supported for source maps. CODE-OF-CONDUCT.md, COMMANDS.md, SECURITY.md, .gitattributes added. 2023-09-22 00:53:34 +08:00
.gitignore [benchmark] generated a performance testing report. 2023-11-02 09:24:06 +08:00
.npmignore [test] test coverage enriched to 90.37% 2023-10-29 21:52:27 +08:00
.npmrc [pkg] ci to publish 2023-09-26 20:21:20 +08:00
.prettierignore [perf] renamed tree-multiset to tree-multimap 2023-11-08 09:26:43 +08:00
.prettierrc.js [binary-tree] bug fix#27 2023-10-30 11:14:41 +08:00
.travis.yml [project] Integrate the CI commands into a single command and uniformly invoke this CI command across different platforms. 2023-10-18 16:05:55 +08:00
CHANGELOG.md release: v1.42.8 2023-11-09 20:48:06 +08:00
CODE_OF_CONDUCT.md [pkg] config files renamed. v1.33.0 2023-09-25 11:16:04 +08:00
COMMANDS.md test coverage report supported. Code quality enhanced and support multiple environments such as ES6 (ESModule), ES5 (CommonJS), and a single file for both browser and Node.js environments (UMD). Supported for source maps. CODE-OF-CONDUCT.md, COMMANDS.md, SECURITY.md, .gitattributes added. 2023-09-22 00:53:34 +08:00
CONTRIBUTING.md docs: Conventional Commits of CONTRIBUTING.md, Built-in classic algorithms enriched 2023-11-08 20:26:07 +08:00
jest.config.js [test] coverage directories specified 2023-11-05 21:37:01 +08:00
jest.integration.config.js [project] Decouple integration testing from the CI workflow. 2023-11-01 18:19:49 +08:00
LICENSE [BinaryTree] isMergeDuplicatedNodeById removed, [MapGraph] MapGraph added 2023-09-07 21:00:22 +08:00
package-lock.json docs: Conventional Commits of CONTRIBUTING.md, Built-in classic algorithms enriched 2023-11-08 20:25:02 +08:00
package.json release: v1.42.8 2023-11-09 20:48:06 +08:00
README.md release: v1.42.8 2023-11-09 20:48:06 +08:00
SECURITY.md test coverage report supported. Code quality enhanced and support multiple environments such as ES6 (ESModule), ES5 (CommonJS), and a single file for both browser and Node.js environments (UMD). Supported for source maps. CODE-OF-CONDUCT.md, COMMANDS.md, SECURITY.md, .gitattributes added. 2023-09-22 00:53:34 +08:00
tsconfig-base.json [BST, AVL] The 'get' method follows the binary search of a BST for bug fixes during queries. [Project] The editor uses 'tsconfig.json' for code checking to be compatible with the 'test' directory, but compiles using their respective configuration files. 2023-11-04 10:00:51 +08:00
tsconfig-cjs.json [BST, AVL] The 'get' method follows the binary search of a BST for bug fixes during queries. [Project] The editor uses 'tsconfig.json' for code checking to be compatible with the 'test' directory, but compiles using their respective configuration files. 2023-11-04 10:00:51 +08:00
tsconfig-mjs.json [BST, AVL] The 'get' method follows the binary search of a BST for bug fixes during queries. [Project] The editor uses 'tsconfig.json' for code checking to be compatible with the 'test' directory, but compiles using their respective configuration files. 2023-11-04 10:00:51 +08:00
tsconfig.json [BST, AVL] The 'get' method follows the binary search of a BST for bug fixes during queries. [Project] The editor uses 'tsconfig.json' for code checking to be compatible with the 'test' directory, but compiles using their respective configuration files. 2023-11-04 10:00:51 +08:00
tsup.config.js [binary-tree] The binary tree's BFS and level-order traversal results should be the same. However, for convenience, we provide an additional method called listLevels to display traversal results in levels. 2023-10-27 22:30:52 +08:00

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)

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, TreeMultimap,
  DirectedVertex, AVLTreeNode
} from 'data-structure-typed';

CDN

Copy the line below into the head tag in an HTML document.

<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 work.

const {Heap} = dataStructureTyped;
const {
  BinaryTree, Graph, Queue, Stack, PriorityQueue, BST, Trie, DoublyLinkedList,
  AVLTree, MinHeap, SinglyLinkedList, DirectedGraph, TreeMultimap,
  DirectedVertex, AVLTreeNode
} = dataStructureTyped;

Code Snippets

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.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

const objBST = new BST<{height: number, age: number}>();

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);

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.getNode(6);
bst.getHeight(6) === 2;         // true
bst.getHeight() === 5;          // true
bst.getDepth(6) === 3;          // true
const leftMost = bst.getLeftMost();
leftMost?.key === 1;            // true

bst.delete(6);
bst.get(6);                     // undefined
bst.isAVLBalanced();            // true or false
const bfsIDs = bst.bfs();
bfsIDs[0] === 11;               // 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 topologicalOrderKeys = 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.key) // ['A', 'B', 'D']

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

API docs & Examples

API Docs

Live Examples

Examples Repository

Data Structures

Data Structure Unit Test Performance Test API Documentation Implemented
Binary Tree Binary Tree
Binary Search Tree (BST) BST
AVL Tree AVLTree
Red Black Tree RedBlackTree
Tree Multiset TreeMultimap
Segment Tree SegmentTree
Binary Indexed Tree BinaryIndexedTree
Graph AbstractGraph
Directed Graph DirectedGraph
Undirected Graph UndirectedGraph
Linked List SinglyLinkedList
Singly Linked List SinglyLinkedList
Doubly Linked List DoublyLinkedList
Queue Queue
Object Deque ObjectDeque
Array Deque ArrayDeque
Stack Stack
Coordinate Set CoordinateSet
Coordinate Map CoordinateMap
Heap Heap
Priority Queue PriorityQueue
Max Priority Queue MaxPriorityQueue
Min Priority Queue MinPriorityQueue
Trie Trie

Standard library data structure comparison

Data Structure Typed C++ STL java.util Python collections
DoublyLinkedList<E> list<T> LinkedList<E> deque
SinglyLinkedList<E> - - -
Array<E> vector<T> ArrayList<E> list
Queue<E> queue<T> Queue<E> -
Deque<E> deque<T> - -
PriorityQueue<E> priority_queue<T> PriorityQueue<E> -
Heap<E> priority_queue<T> PriorityQueue<E> heapq
Stack<E> stack<T> Stack<E> -
Set<E> set<T> HashSet<E> set
Map<K, V> map<K, V> HashMap<K, V> dict
- unordered_set<T> HashSet<E> -
HashMap<K, V> unordered_map<K, V> HashMap<K, V> defaultdict
Map<K, V> - - OrderedDict
BinaryTree<K, V> - - -
BST<K, V> - - -
TreeMultimap<K, V> multimap<K, V> - -
AVLTree<E> - TreeSet<E> -
AVLTree<K, V> - TreeMap<K, V> -
AVLTree<E> set TreeSet<E> -
Trie - - -
- multiset<T> - -
DirectedGraph<V, E> - - -
UndirectedGraph<V, E> - - -
- unordered_multiset - Counter
- - LinkedHashSet<E> -
- - LinkedHashMap<K, V> -
- unordered_multimap<K, V> - -
- bitset<N> - -

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 -> TreeMultimap), 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 secsample deviation
10,000 add randomly45.4821.990.04
10,000 add & delete randomly132.357.560.10
10,000 addMany79.2212.620.07
10,000 get93.1310.740.06
binary-tree
test nametime taken (ms)executions per secsample deviation
1,000 add randomly23.8941.850.01
1,000 add & delete randomly22.8443.780.01
1,000 addMany10.6194.224.91e-4
1,000 get18.5653.878.86e-4
1,000 dfs158.906.290.00
1,000 bfs58.5917.070.00
1,000 morris269.913.700.01
bst
test nametime taken (ms)executions per secsample deviation
10,000 add randomly31.6631.598.90e-4
10,000 add & delete randomly73.9713.520.00
10,000 addMany31.6631.580.00
10,000 get29.7533.615.49e-4
rb-tree
test nametime taken (ms)executions per secsample deviation
100,000 add randomly87.2411.460.00
100,000 add & delete randomly218.784.570.01
100,000 getNode91.3910.940.00
directed-graph
test nametime taken (ms)executions per secsample deviation
1,000 addVertex0.109631.845.21e-6
1,000 addEdge6.25160.063.97e-4
1,000 getVertex0.052.13e+41.05e-6
1,000 getEdge23.8341.970.00
tarjan217.694.590.01
tarjan all226.434.420.01
topologicalSort180.715.530.01
heap
test nametime taken (ms)executions per secsample deviation
10,000 add & pop4.69213.131.63e-4
10,000 fib add & pop367.492.720.01
doubly-linked-list
test nametime taken (ms)executions per secsample deviation
1,000,000 unshift221.104.520.06
1,000,000 unshift & shift179.995.560.03
1,000,000 insertBefore331.293.020.06
singly-linked-list
test nametime taken (ms)executions per secsample deviation
10,000 push & pop216.594.620.01
10,000 insertBefore255.083.920.01
max-priority-queue
test nametime taken (ms)executions per secsample deviation
10,000 refill & poll12.0083.346.62e-4
deque
test nametime taken (ms)executions per secsample deviation
1,000,000 push222.014.500.05
1,000,000 shift25.3539.450.00
queue
test nametime taken (ms)executions per secsample deviation
1,000,000 push45.3122.070.01
1,000,000 push & shift83.9211.920.01
trie
test nametime taken (ms)executions per secsample deviation
100,000 push59.0816.920.01
100,000 getWords95.7410.440.01