elseware-nodejs 1.2.1 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -102
- package/dist/index.cjs +5421 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +23 -1
- package/dist/index.d.ts +23 -1
- package/dist/index.js +5331 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,103 +1 @@
|
|
|
1
1
|
# elseware-nodejs
|
|
2
|
-
|
|
3
|
-
## Data Stuctures
|
|
4
|
-
```
|
|
5
|
-
data-structures/
|
|
6
|
-
├── array/
|
|
7
|
-
│ ├── StaticArray.ts ✅
|
|
8
|
-
│ ├── DynamicArray.ts ✅
|
|
9
|
-
│ └── CircularArray.ts ✅
|
|
10
|
-
│
|
|
11
|
-
├── linked-list/
|
|
12
|
-
│ ├── SinglyLinkedList.ts ✅
|
|
13
|
-
│ ├── DoublyLinkedList.ts ✅
|
|
14
|
-
│ └── CircularLinkedList.ts ✅
|
|
15
|
-
│
|
|
16
|
-
├── stack/
|
|
17
|
-
│ ├── Stack.ts ✅
|
|
18
|
-
│ ├── MinStack.ts ✅
|
|
19
|
-
│ └── MaxStack.ts ✅
|
|
20
|
-
│
|
|
21
|
-
├── queue/
|
|
22
|
-
│ ├── Queue.ts ✅
|
|
23
|
-
│ ├── CircularQueue.ts ✅
|
|
24
|
-
│ ├── Deque.ts ✅
|
|
25
|
-
│ └── PriorityQueue.ts ✅
|
|
26
|
-
│
|
|
27
|
-
├── hash/
|
|
28
|
-
│ ├── HashMap.ts ✅
|
|
29
|
-
│ ├── HashSet.ts ✅
|
|
30
|
-
│ ├── LRUCache.ts ✅
|
|
31
|
-
│ ├── LFUCache.ts ✅
|
|
32
|
-
│ └── ConsistentHash.ts ✅
|
|
33
|
-
│
|
|
34
|
-
├── tree/
|
|
35
|
-
│ ├── binary/
|
|
36
|
-
│ │ ├── BinaryTree.ts ✅
|
|
37
|
-
│ │ └── BinarySearchTree.ts ✅
|
|
38
|
-
│ │
|
|
39
|
-
│ ├── balanced/
|
|
40
|
-
│ │ ├── AVLTree.ts ✅
|
|
41
|
-
│ │ ├── RedBlackTree.ts ✅
|
|
42
|
-
│ │ └── SplayTree.ts ✅
|
|
43
|
-
│ │
|
|
44
|
-
│ ├── prefix/
|
|
45
|
-
│ │ ├── Trie.ts ✅
|
|
46
|
-
│ │ ├── RadixTree.ts ✅
|
|
47
|
-
│ │ └── TernarySearchTree.ts ✅
|
|
48
|
-
│ │
|
|
49
|
-
│ ├── multiway/
|
|
50
|
-
│ │ ├── BTree.ts ✅
|
|
51
|
-
│ │ └── BPlusTree.ts ✅
|
|
52
|
-
│ │
|
|
53
|
-
│ └── range/
|
|
54
|
-
│ ├── SegmentTree.ts ✅
|
|
55
|
-
│ ├── FenwickTree.ts ✅
|
|
56
|
-
│ └── IntervalTree.ts ✅
|
|
57
|
-
│
|
|
58
|
-
├── heap/
|
|
59
|
-
│ ├── BinaryHeap.ts ✅
|
|
60
|
-
│ ├── MinHeap.ts ✅
|
|
61
|
-
│ ├── MaxHeap.ts ✅
|
|
62
|
-
│ ├── FibonacciHeap.ts ✅
|
|
63
|
-
│ └── PairingHeap.ts ✅
|
|
64
|
-
│
|
|
65
|
-
├── graph/
|
|
66
|
-
│ ├── Graph.ts ✅
|
|
67
|
-
│ ├── DirectedGraph.ts ✅
|
|
68
|
-
│ ├── AdjacencyList.ts ✅
|
|
69
|
-
│ └── AdjacencyMatrix.ts ✅
|
|
70
|
-
│
|
|
71
|
-
├── set/
|
|
72
|
-
│ ├── Set.ts ✅
|
|
73
|
-
│ ├── OrderedSet.ts ✅
|
|
74
|
-
│ ├── MultiSet.ts ✅
|
|
75
|
-
│ └── DisjointSetUnion.ts ✅
|
|
76
|
-
│
|
|
77
|
-
├── string/
|
|
78
|
-
│ ├── SuffixArray.ts ✅
|
|
79
|
-
│ └── SuffixTree.ts ✅
|
|
80
|
-
│
|
|
81
|
-
├── spatial/
|
|
82
|
-
│ ├── KDTree.ts ✅
|
|
83
|
-
│ └── QuadTree.ts ✅
|
|
84
|
-
│
|
|
85
|
-
├── probabilistic/
|
|
86
|
-
│ ├── BloomFilter.ts ✅
|
|
87
|
-
│ ├── CountMinSketch.ts ✅
|
|
88
|
-
│ └── HyperLogLog.ts ✅
|
|
89
|
-
│
|
|
90
|
-
├── table/
|
|
91
|
-
│ └── SparseTable.ts ✅
|
|
92
|
-
│
|
|
93
|
-
├── union-find/
|
|
94
|
-
│ └── UnionFind.ts ✅
|
|
95
|
-
│
|
|
96
|
-
└── interfaces/
|
|
97
|
-
├── ICollection.ts
|
|
98
|
-
├── IStack.ts
|
|
99
|
-
├── IQueue.ts
|
|
100
|
-
├── ITree.ts
|
|
101
|
-
├── IGraph.ts
|
|
102
|
-
└── IHeap.ts
|
|
103
|
-
```
|