mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2024-11-23 12:54:04 +00:00
MIrror of DST.
https://data-structure-typed-docs.vercel.app
.idea | ||
docs | ||
src | ||
tests/unit/data-structures | ||
.dependency-cruiser.js | ||
.gitignore | ||
jest.config.js | ||
package-lock.json | ||
package.json | ||
README.md | ||
rename_clear_files.sh | ||
tsconfig.json |
data-structure-typed
Javascript Data Structure, TypeScript Data Structure Library
install
yarn
yarn add data-structure-typed
npm
npm install data-structure-typed
api docs
data-- CP
- Family
Position - Loop
Type - AVLTree
- AVLTree
Node - Aa
Tree - Abstract
Edge - Abstract
Graph - Abstract
Vertex - Array
Deque - BST
- BSTNode
- BTree
- Binary
Indexed Tree - Binary
Tree - Binary
Tree Node - Character
- Coordinate
Map - Coordinate
Set - Deque
- Directed
Edge - Directed
Graph - Directed
Vertex - Doubly
Linked List - Doubly
Linked List Node - Heap
- Matrix2D
- MatrixNTI2D
- Max
Heap - Max
Priority Queue - Min
Heap - Min
Priority Queue - Navigator
- Object
Deque - Priority
Queue - Queue
- RBTree
- Segment
Tree - Segment
Tree Node - Singly
Linked List - Singly
Linked List Node - Splay
Tree - Stack
- Tree
Multi Set - Trie
- Trie
Node - Two
Three Tree - Undirected
Edge - Undirected
Graph - Undirected
Vertex - Vector2D
data structures
Meticulously crafted to empower developers with a versatile set of essential data structures. Our library includes a wide range of data structures: Binary Tree, Binary Search Tree (BST), AVL Tree, Tree Multiset, Segment Tree, Binary Indexed Tree, Graph, Directed Graph, Undirected Graph, Linked List, Singly Linked List, Doubly Linked List, Queue, Object Deque, Array Deque, Stack, Hash, Coordinate Set, Coordinate Map, Heap, Priority Queue, Max Priority Queue, Min Priority Queue, Trie
Data Structure | Derived | Basic Features | Additional Features |
---|---|---|---|
Binary Tree | AVL Tree, Binary Search Tree, Tree Multiset | put, has, get, remove, size, insertTo, insertMany, fill, getDepth, getHeight, getMinHeight, getPathToRoot, isBalanced | getLeftMost, isBST, getSubTreeSizeAndCount, subTreeSum, subTreeAdd, BFS, DFS, DFSIterative, levelIterative, listLevels, getPredecessor, morris, |
AVL Tree | All the features inherited from Binary Tree, balanceFactor, updateHeight, balancePath, balanceLL, balanceLR, balanceRR, balanceRL | ||
Binary Search Tree (BST) | All the features inherited from Binary Tree, lastKey | All the features inherited from Binary Tree, lesserSum, allGreaterNodesAdd, balance, isAVLBalanced | |
Tree Multiset | All the features inherited from Binary Tree | All the features inherited from Binary Tree | |
Segment Tree | build, updateNode, querySumByRange | ||
Binary Indexed Tree | update, getPrefixSum, getRangeSum, BinaryIndexedTree.lowBit | ||
Graph | Directed Graph, Undirected Graph | getVertex, getVertexId, containsVertex, vertexSet, addVertex, removeVertex, removeAllVertices, containsEdge, setEdgeWeight, getAllPathsBetween, getPathSumWeight, getMinCostBetween, getMinPathBetween, | dijkstra, dijkstraWithoutHeap, bellmanFord, floyd, tarjan |
Directed Graph | All the features inherited from Graph, getEdge, addEdge, removeEdgeBetween, removeEdge, removeAllEdges, incomingEdgesOf, outgoingEdgesOf, degreeOf, inDegreeOf, outDegreeOf, edgesOf, getEdgeSrc, getEdgeDest, getDestinations, edgeSet, getNeighbors, getEndsOfEdge | All the features inherited from Graph, topologicalSort | |
Undirected Graph | All the features inherited from Graph, getEdge, addEdge, removeEdgeBetween, removeEdge, degreeOf, edgesOf, edgeSet, getEdgesOf, getNeighbors, getEndsOfEdge | All the features inherited from Graph | |
Singly Linked List | length, head, tail, size, get, getNode, findNodeIndex, findNode, find, findIndex, append, push, prepend, insertAt, removeNode, removeAt, insertBefore, sort, insertAfter, shift, pop, merge, clear, slice, reverse, forEach, map, filter, reduce, toArray, toString | ||
Hash | CoordinateSet, CoordinateMap | ||
CoordinateSet | has, set, get, delete | ||
CoordinateMap | has, add, delete | ||
Heap | |||
Doubly Linked List | size, offerFirst, offerLast, peekFirst, peekLast, pollFirst, pollLast, get, isEmpty, insert, remove, | ||
Priority Queue | Max Priority Queue, Min Priority Queue | offer, peek, poll, leaf, isEmpty, clear, toArray, clone | isValid, sort, DFS |
Max Priority Queue | All the features inherited from Priority Queue | All the features inherited from Priority Queue | |
Min Priority Queue | All the features inherited from Priority Queue | All the features inherited from Priority Queue | |
Queue | Queue, Dequeue | offer, poll, peek, peekLast, size, isEmpty, toArray, clear, clone, Queue.fromArray | |
ObjectDeque | size, offerFirst, offerLast, pollFirst, peekFirst, pollLast, peekLast, get, isEmpty | ||
ArrayDeque | offerLast, pollLast, pollFirst, offerFirst, peekFirst, peekLast, get, set, insert, remove, isEmpty | ||
Stack | isEmpty, size, peek, push, pop, toArray, clear, clone, Stack.fromArray | ||
Trie | put, has, remove, isAbsPrefix, isPrefix, getAll |