data-structure-typed 1.46.6 → 1.46.7
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/CHANGELOG.md +1 -1
- package/package.json +70 -47
package/CHANGELOG.md
CHANGED
|
@@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
- [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
|
|
9
9
|
- [`auto-changelog`](https://github.com/CookPete/auto-changelog)
|
|
10
10
|
|
|
11
|
-
## [v1.46.
|
|
11
|
+
## [v1.46.7](https://github.com/zrwusa/data-structure-typed/compare/v1.35.0...main) (upcoming)
|
|
12
12
|
|
|
13
13
|
### Changes
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-structure-typed",
|
|
3
|
-
"version": "1.46.
|
|
4
|
-
"description": "Data Structures of Javascript & TypeScript. Binary Tree,
|
|
3
|
+
"version": "1.46.7",
|
|
4
|
+
"description": "Data Structures of Javascript & TypeScript. Heap, Binary Tree, RedBlack Tree, Linked List, Deque, Trie, HashMap, Directed Graph, Undirected Graph, Binary Search Tree(BST), AVL Tree, Priority Queue, Graph, Queue, Tree Multiset, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Queue, Min Heap, Min Priority Queue, Stack.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/mjs/index.js",
|
|
7
7
|
"types": "dist/mjs/index.d.ts",
|
|
@@ -101,8 +101,6 @@
|
|
|
101
101
|
"data-structures",
|
|
102
102
|
"in data structures",
|
|
103
103
|
"in data structure",
|
|
104
|
-
"DataStructure",
|
|
105
|
-
"DataStructures",
|
|
106
104
|
"binary",
|
|
107
105
|
"depth",
|
|
108
106
|
"breadth",
|
|
@@ -110,10 +108,18 @@
|
|
|
110
108
|
"search",
|
|
111
109
|
"index",
|
|
112
110
|
"avl",
|
|
111
|
+
"red",
|
|
112
|
+
"black",
|
|
113
|
+
"redblack",
|
|
114
|
+
"RB",
|
|
113
115
|
"segment",
|
|
114
116
|
"prefix",
|
|
115
117
|
"tree",
|
|
118
|
+
"multi",
|
|
119
|
+
"map",
|
|
120
|
+
"set",
|
|
116
121
|
"multiset",
|
|
122
|
+
"multimap",
|
|
117
123
|
"directed",
|
|
118
124
|
"undirected",
|
|
119
125
|
"graph",
|
|
@@ -131,39 +137,53 @@
|
|
|
131
137
|
"javascript",
|
|
132
138
|
"typscript",
|
|
133
139
|
"Node.js",
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"UMD",
|
|
137
|
-
"esmodule",
|
|
138
|
-
"java.util",
|
|
139
|
-
"c++ stl",
|
|
140
|
-
"c++ std",
|
|
141
|
-
"Python collections",
|
|
142
|
-
"System.Collections.Generic",
|
|
143
|
-
"STL",
|
|
144
|
-
"stl",
|
|
145
|
-
"STD",
|
|
140
|
+
"NodeJS",
|
|
141
|
+
"c++",
|
|
146
142
|
"std",
|
|
147
|
-
"
|
|
148
|
-
"
|
|
143
|
+
"C++ STL",
|
|
144
|
+
"c++stl",
|
|
145
|
+
"C++ std",
|
|
146
|
+
"stl",
|
|
147
|
+
"std::",
|
|
148
|
+
"Python",
|
|
149
149
|
"collections",
|
|
150
|
+
"Python Collections",
|
|
151
|
+
"pythoncollections",
|
|
152
|
+
"python-collections",
|
|
153
|
+
"C#",
|
|
154
|
+
"System.Collections.Generic",
|
|
150
155
|
"collection",
|
|
156
|
+
"java.util",
|
|
157
|
+
"Java",
|
|
151
158
|
"util",
|
|
152
|
-
"sort",
|
|
153
|
-
"algorithm",
|
|
154
159
|
"binary search tree",
|
|
155
160
|
"binarysearchtree",
|
|
156
161
|
"binary-search-tree",
|
|
162
|
+
"BST",
|
|
157
163
|
"binary tree",
|
|
158
164
|
"binarytree",
|
|
159
165
|
"binary-tree",
|
|
160
|
-
"
|
|
161
|
-
"
|
|
166
|
+
"red black tree",
|
|
167
|
+
"redblacktree",
|
|
168
|
+
"redblack tree",
|
|
169
|
+
"red-black-tree",
|
|
170
|
+
"redblack-tree",
|
|
171
|
+
"trie",
|
|
172
|
+
"prefix tree",
|
|
173
|
+
"prefixtree",
|
|
174
|
+
"prefix-tree",
|
|
162
175
|
"avl tree",
|
|
163
176
|
"avltree",
|
|
164
177
|
"avl-tree",
|
|
178
|
+
"tree set",
|
|
179
|
+
"treeset",
|
|
180
|
+
"tree-set",
|
|
165
181
|
"tree multiset",
|
|
166
182
|
"treemultiset",
|
|
183
|
+
"tree-multiset",
|
|
184
|
+
"tree map",
|
|
185
|
+
"treemap",
|
|
186
|
+
"tree-map",
|
|
167
187
|
"tree multimap",
|
|
168
188
|
"treemultimap",
|
|
169
189
|
"tree-multimap",
|
|
@@ -173,21 +193,31 @@
|
|
|
173
193
|
"segment tree",
|
|
174
194
|
"segmenttree",
|
|
175
195
|
"segment-tree",
|
|
176
|
-
"
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
196
|
+
"sort",
|
|
197
|
+
"sorted",
|
|
198
|
+
"order",
|
|
199
|
+
"ordered",
|
|
200
|
+
"algorithm",
|
|
201
|
+
"morris",
|
|
202
|
+
"Morris",
|
|
203
|
+
"bellman ford",
|
|
204
|
+
"bellmanford",
|
|
205
|
+
"bellman-ford",
|
|
206
|
+
"dijkstra",
|
|
207
|
+
"Dijkstra",
|
|
208
|
+
"floyd warshall",
|
|
209
|
+
"floydwarshall",
|
|
210
|
+
"floyd-warshall",
|
|
211
|
+
"tarjan",
|
|
212
|
+
"tarjan's",
|
|
180
213
|
"dfs",
|
|
181
|
-
"DFS",
|
|
182
214
|
"depth first Search",
|
|
183
215
|
"depthfirstSearch",
|
|
184
216
|
"depth-first-Search",
|
|
185
217
|
"bfs",
|
|
186
|
-
"BFS",
|
|
187
218
|
"breadth first search",
|
|
188
219
|
"breadthfirstsearch",
|
|
189
220
|
"dfs iterative",
|
|
190
|
-
"DFS Iterative",
|
|
191
221
|
"recursive",
|
|
192
222
|
"iterative",
|
|
193
223
|
"directed graph",
|
|
@@ -211,13 +241,12 @@
|
|
|
211
241
|
"min priority queue",
|
|
212
242
|
"minpriorityqueue",
|
|
213
243
|
"min-priority-queue",
|
|
214
|
-
"array queue",
|
|
215
|
-
"array-queue",
|
|
216
|
-
"stack",
|
|
217
244
|
"hash",
|
|
245
|
+
"map",
|
|
246
|
+
"hash map",
|
|
247
|
+
"hashmap",
|
|
248
|
+
"hash-map",
|
|
218
249
|
"deque",
|
|
219
|
-
"object deque",
|
|
220
|
-
"array deque",
|
|
221
250
|
"linked list",
|
|
222
251
|
"linkedlist",
|
|
223
252
|
"linked-list",
|
|
@@ -227,18 +256,12 @@
|
|
|
227
256
|
"doubly linked list",
|
|
228
257
|
"doublylinkedlist",
|
|
229
258
|
"doubly-linked-list",
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"floyd warshall",
|
|
238
|
-
"Floyd Warshall",
|
|
239
|
-
"floyd-warshall",
|
|
240
|
-
"tarjan",
|
|
241
|
-
"Tarjan",
|
|
242
|
-
"Tarjan's"
|
|
259
|
+
"stack",
|
|
260
|
+
"CommonJS",
|
|
261
|
+
"ES6",
|
|
262
|
+
"UMD",
|
|
263
|
+
"ES Modules",
|
|
264
|
+
"ESModules",
|
|
265
|
+
"ESModule"
|
|
243
266
|
]
|
|
244
267
|
}
|