data-structure-typed 1.33.0 → 1.33.5
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/{.eslintrc.json → .eslintrc.js} +2 -1
- package/.github/workflows/ci.yml +15 -3
- package/.github/workflows/release-package.yml +32 -0
- package/{.prettierrc → .prettierrc.js} +1 -1
- package/CHANGELOG.md +5 -1
- package/README.md +196 -257
- package/coverage/coverage-final.json +64 -64
- package/coverage/coverage-summary.json +16 -16
- package/dist/data-structures/binary-tree/abstract-binary-tree.js +1 -16
- package/dist/data-structures/binary-tree/abstract-binary-tree.js.map +1 -1
- package/dist/data-structures/binary-tree/avl-tree.js +2 -2
- package/dist/data-structures/binary-tree/avl-tree.js.map +1 -1
- package/dist/data-structures/binary-tree/rb-tree.js +3 -4
- package/dist/data-structures/binary-tree/rb-tree.js.map +1 -1
- package/dist/data-structures/graph/abstract-graph.js +12 -12
- package/dist/data-structures/graph/abstract-graph.js.map +1 -1
- package/dist/data-structures/graph/directed-graph.js.map +1 -1
- package/dist/data-structures/graph/undirected-graph.js.map +1 -1
- package/dist/data-structures/hash/hash-table.js +107 -2
- package/dist/data-structures/hash/hash-table.js.map +1 -1
- package/dist/data-structures/heap/max-heap.js.map +1 -1
- package/dist/data-structures/heap/min-heap.js.map +1 -1
- package/dist/data-structures/linked-list/doubly-linked-list.js +30 -0
- package/dist/data-structures/linked-list/doubly-linked-list.js.map +1 -1
- package/dist/data-structures/matrix/matrix2d.js +5 -8
- package/dist/data-structures/matrix/matrix2d.js.map +1 -1
- package/dist/data-structures/priority-queue/max-priority-queue.js.map +1 -1
- package/dist/data-structures/priority-queue/min-priority-queue.js.map +1 -1
- package/dist/data-structures/priority-queue/priority-queue.js +6 -6
- package/dist/data-structures/priority-queue/priority-queue.js.map +1 -1
- package/dist/data-structures/queue/deque.js.map +1 -1
- package/docs/index.html +196 -256
- package/docs/modules.html +2 -0
- package/lib/data-structures/binary-tree/abstract-binary-tree.d.ts +8 -18
- package/lib/data-structures/binary-tree/abstract-binary-tree.js +5 -23
- package/lib/data-structures/binary-tree/avl-tree.d.ts +7 -10
- package/lib/data-structures/binary-tree/avl-tree.js +6 -9
- package/lib/data-structures/binary-tree/binary-tree.d.ts +2 -2
- package/lib/data-structures/binary-tree/bst.d.ts +2 -2
- package/lib/data-structures/binary-tree/rb-tree.d.ts +3 -3
- package/lib/data-structures/binary-tree/rb-tree.js +3 -3
- package/lib/data-structures/binary-tree/tree-multiset.d.ts +3 -3
- package/lib/data-structures/binary-tree/tree-multiset.js +1 -1
- package/lib/data-structures/graph/abstract-graph.d.ts +10 -10
- package/lib/data-structures/graph/abstract-graph.js +2 -2
- package/lib/data-structures/graph/directed-graph.d.ts +6 -6
- package/lib/data-structures/graph/directed-graph.js +2 -2
- package/lib/data-structures/graph/map-graph.d.ts +6 -6
- package/lib/data-structures/graph/map-graph.js +2 -2
- package/lib/data-structures/graph/undirected-graph.d.ts +6 -6
- package/lib/data-structures/graph/undirected-graph.js +2 -2
- package/lib/data-structures/hash/hash-table.d.ts +61 -1
- package/lib/data-structures/hash/hash-table.js +136 -0
- package/lib/data-structures/heap/heap.d.ts +31 -31
- package/lib/data-structures/heap/heap.js +11 -11
- package/lib/data-structures/heap/max-heap.d.ts +4 -4
- package/lib/data-structures/heap/max-heap.js +1 -1
- package/lib/data-structures/heap/min-heap.d.ts +4 -4
- package/lib/data-structures/heap/min-heap.js +1 -1
- package/lib/data-structures/linked-list/doubly-linked-list.d.ts +93 -54
- package/lib/data-structures/linked-list/doubly-linked-list.js +79 -22
- package/lib/data-structures/linked-list/singly-linked-list.d.ts +46 -46
- package/lib/data-structures/linked-list/singly-linked-list.js +20 -20
- package/lib/data-structures/matrix/matrix.d.ts +3 -3
- package/lib/data-structures/matrix/matrix2d.d.ts +1 -1
- package/lib/data-structures/matrix/matrix2d.js +3 -2
- package/lib/data-structures/priority-queue/max-priority-queue.d.ts +4 -4
- package/lib/data-structures/priority-queue/min-priority-queue.d.ts +4 -4
- package/lib/data-structures/priority-queue/priority-queue.d.ts +26 -26
- package/lib/data-structures/priority-queue/priority-queue.js +8 -8
- package/lib/data-structures/queue/deque.d.ts +30 -30
- package/lib/data-structures/queue/deque.js +7 -7
- package/lib/data-structures/queue/queue.d.ts +27 -27
- package/lib/data-structures/queue/queue.js +8 -8
- package/lib/data-structures/stack/stack.d.ts +15 -15
- package/lib/data-structures/stack/stack.js +6 -6
- package/lib/data-structures/tree/tree.d.ts +7 -7
- package/lib/interfaces/abstract-binary-tree.d.ts +0 -1
- package/lib/interfaces/avl-tree.d.ts +1 -1
- package/lib/types/data-structures/navigator.d.ts +1 -1
- package/package.json +68 -62
- package/src/data-structures/binary-tree/aa-tree.ts +1 -0
- package/src/data-structures/binary-tree/abstract-binary-tree.ts +1608 -0
- package/src/data-structures/binary-tree/avl-tree.ts +307 -0
- package/src/data-structures/binary-tree/b-tree.ts +1 -0
- package/src/data-structures/binary-tree/binary-indexed-tree.ts +76 -0
- package/src/data-structures/binary-tree/binary-tree.ts +47 -0
- package/src/data-structures/binary-tree/bst.ts +537 -0
- package/src/data-structures/binary-tree/index.ts +12 -0
- package/src/data-structures/binary-tree/rb-tree.ts +366 -0
- package/src/data-structures/binary-tree/segment-tree.ts +242 -0
- package/src/data-structures/binary-tree/splay-tree.ts +1 -0
- package/src/data-structures/binary-tree/tree-multiset.ts +700 -0
- package/src/data-structures/binary-tree/two-three-tree.ts +1 -0
- package/src/data-structures/graph/abstract-graph.ts +1040 -0
- package/src/data-structures/graph/directed-graph.ts +470 -0
- package/src/data-structures/graph/index.ts +4 -0
- package/src/data-structures/graph/map-graph.ts +129 -0
- package/src/data-structures/graph/undirected-graph.ts +274 -0
- package/src/data-structures/hash/coordinate-map.ts +67 -0
- package/src/data-structures/hash/coordinate-set.ts +56 -0
- package/src/data-structures/hash/hash-table.ts +157 -0
- package/src/data-structures/hash/index.ts +6 -0
- package/src/data-structures/hash/pair.ts +1 -0
- package/src/data-structures/hash/tree-map.ts +1 -0
- package/src/data-structures/hash/tree-set.ts +1 -0
- package/src/data-structures/heap/heap.ts +212 -0
- package/src/data-structures/heap/index.ts +3 -0
- package/src/data-structures/heap/max-heap.ts +31 -0
- package/src/data-structures/heap/min-heap.ts +32 -0
- package/src/data-structures/index.ts +11 -0
- package/src/data-structures/linked-list/doubly-linked-list.ts +636 -0
- package/src/data-structures/linked-list/index.ts +3 -0
- package/src/data-structures/linked-list/singly-linked-list.ts +501 -0
- package/src/data-structures/linked-list/skip-linked-list.ts +1 -0
- package/src/data-structures/matrix/index.ts +4 -0
- package/src/data-structures/matrix/matrix.ts +27 -0
- package/src/data-structures/matrix/matrix2d.ts +213 -0
- package/src/data-structures/matrix/navigator.ts +121 -0
- package/src/data-structures/matrix/vector2d.ts +316 -0
- package/src/data-structures/priority-queue/index.ts +3 -0
- package/src/data-structures/priority-queue/max-priority-queue.ts +56 -0
- package/src/data-structures/priority-queue/min-priority-queue.ts +57 -0
- package/src/data-structures/priority-queue/priority-queue.ts +359 -0
- package/src/data-structures/queue/deque.ts +297 -0
- package/src/data-structures/queue/index.ts +2 -0
- package/src/data-structures/queue/queue.ts +191 -0
- package/src/data-structures/stack/index.ts +1 -0
- package/src/data-structures/stack/stack.ts +98 -0
- package/src/data-structures/tree/index.ts +1 -0
- package/src/data-structures/tree/tree.ts +69 -0
- package/src/data-structures/trie/index.ts +1 -0
- package/src/data-structures/trie/trie.ts +225 -0
- package/src/index.ts +4 -0
- package/src/interfaces/abstract-binary-tree.ts +189 -0
- package/src/interfaces/abstract-graph.ts +31 -0
- package/src/interfaces/avl-tree.ts +25 -0
- package/src/interfaces/binary-tree.ts +6 -0
- package/src/interfaces/bst.ts +31 -0
- package/src/interfaces/directed-graph.ts +20 -0
- package/src/interfaces/doubly-linked-list.ts +1 -0
- package/src/interfaces/heap.ts +1 -0
- package/src/interfaces/index.ts +15 -0
- package/src/interfaces/navigator.ts +1 -0
- package/src/interfaces/priority-queue.ts +1 -0
- package/src/interfaces/rb-tree.ts +9 -0
- package/src/interfaces/segment-tree.ts +1 -0
- package/src/interfaces/singly-linked-list.ts +1 -0
- package/src/interfaces/tree-multiset.ts +7 -0
- package/src/interfaces/undirected-graph.ts +6 -0
- package/src/types/data-structures/abstract-binary-tree.ts +50 -0
- package/src/types/data-structures/abstract-graph.ts +11 -0
- package/src/types/data-structures/avl-tree.ts +5 -0
- package/src/types/data-structures/binary-tree.ts +5 -0
- package/src/types/data-structures/bst.ts +13 -0
- package/src/types/data-structures/directed-graph.ts +8 -0
- package/src/types/data-structures/doubly-linked-list.ts +1 -0
- package/src/types/data-structures/heap.ts +5 -0
- package/src/types/data-structures/index.ts +15 -0
- package/src/types/data-structures/map-graph.ts +1 -0
- package/src/types/data-structures/navigator.ts +13 -0
- package/src/types/data-structures/priority-queue.ts +9 -0
- package/src/types/data-structures/rb-tree.ts +8 -0
- package/src/types/data-structures/segment-tree.ts +1 -0
- package/src/types/data-structures/singly-linked-list.ts +1 -0
- package/src/types/data-structures/tree-multiset.ts +6 -0
- package/src/types/helpers.ts +1 -0
- package/src/types/index.ts +3 -0
- package/src/types/utils/index.ts +2 -0
- package/src/types/utils/utils.ts +6 -0
- package/src/types/utils/validate-type.ts +35 -0
- package/src/utils/index.ts +1 -0
- package/src/utils/utils.ts +79 -0
- package/test/integration/avl-tree.test.ts +14 -17
- package/test/integration/bst.test.ts +50 -41
- package/test/integration/heap.test.js +0 -3
- package/test/integration/index.html +6 -6
- package/test/unit/data-structures/binary-tree/avl-tree.test.ts +14 -17
- package/test/unit/data-structures/binary-tree/binary-tree.test.ts +142 -0
- package/test/unit/data-structures/binary-tree/bst.test.ts +50 -41
- package/test/unit/data-structures/binary-tree/overall.test.ts +36 -28
- package/test/unit/data-structures/binary-tree/rb-tree.test.ts +43 -0
- package/test/unit/data-structures/binary-tree/tree-multiset.test.ts +23 -12
- package/test/unit/data-structures/graph/directed-graph.test.ts +27 -25
- package/test/unit/data-structures/graph/map-graph.test.ts +4 -5
- package/test/unit/data-structures/graph/overall.test.ts +10 -11
- package/test/unit/data-structures/graph/undirected-graph.test.ts +0 -1
- package/test/unit/data-structures/hash/coordinate-map.test.ts +54 -0
- package/test/unit/data-structures/hash/coordinate-set.test.ts +41 -0
- package/test/unit/data-structures/hash/hash-table.test.ts +97 -0
- package/test/unit/data-structures/heap/heap.test.ts +7 -8
- package/test/unit/data-structures/heap/max-heap.test.ts +7 -5
- package/test/unit/data-structures/heap/min-heap.test.ts +6 -5
- package/test/unit/data-structures/linked-list/doubly-linked-list.test.ts +8 -9
- package/test/unit/data-structures/linked-list/linked-list.test.ts +2 -4
- package/test/unit/data-structures/linked-list/singly-linked-list.test.ts +57 -7
- package/test/unit/data-structures/linked-list/skip-linked-list.test.ts +3 -3
- package/test/unit/data-structures/matrix/matrix.test.ts +54 -0
- package/test/unit/data-structures/matrix/matrix2d.test.ts +138 -0
- package/test/unit/data-structures/matrix/navigator.test.ts +79 -0
- package/test/unit/data-structures/priority-queue/max-priority-queue.test.ts +5 -7
- package/test/unit/data-structures/priority-queue/min-priority-queue.test.ts +13 -13
- package/test/unit/data-structures/priority-queue/priority-queue.test.ts +8 -8
- package/test/unit/data-structures/queue/deque.test.ts +130 -0
- package/test/unit/data-structures/queue/queue.test.ts +167 -4
- package/test/unit/data-structures/stack/stack.test.ts +67 -0
- package/test/unit/data-structures/tree/tree.test.ts +39 -0
- package/test/unit/data-structures/trie/trie.test.ts +95 -0
- package/test/utils/magnitude.ts +3 -3
- package/tsconfig.json +3 -12
- package/tsconfig.prod.json +25 -0
- package/umd/bundle.min.js +1 -1
- package/umd/bundle.min.js.map +1 -1
- package/.auto-changelog +0 -9
- package/.gitattributes +0 -112
- package/.idea/data-structure-typed.iml +0 -19
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
- package/.prettierignore +0 -6
- package/webpack.config.js +0 -28
package/package.json
CHANGED
|
@@ -1,32 +1,91 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-structure-typed",
|
|
3
|
-
"version": "1.33.
|
|
3
|
+
"version": "1.33.5",
|
|
4
4
|
"description": "Data Structures of Javascript & TypeScript. Binary Tree, BST, Graph, Heap, Priority Queue, Linked List, Queue, Deque, Stack, AVL Tree, Tree Multiset, Trie, Directed Graph, Undirected Graph, Singly Linked List, Doubly Linked List, Max Heap, Max Priority Queue, Min Heap, Min Priority Queue.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
8
|
-
"umd:main": "umd/bundle.min.js",
|
|
9
8
|
"source": "src/index.ts",
|
|
9
|
+
"umd:main": "umd/bundle.min.js",
|
|
10
10
|
"scripts": {
|
|
11
|
-
"build": "npm run build:es6 && npm run build:commonjs && npm run build:umd",
|
|
11
|
+
"build": "npm run build:es6 && npm run build:commonjs && npm run build:umd && npm run build:docs",
|
|
12
12
|
"build:es6": "rm -rf lib && tsc",
|
|
13
|
-
"build:commonjs": "rm -rf dist && tsc --project tsconfig.
|
|
13
|
+
"build:commonjs": "rm -rf dist && tsc --project tsconfig.prod.json",
|
|
14
14
|
"build:umd": "webpack",
|
|
15
15
|
"build:docs": "typedoc --out docs ./src",
|
|
16
|
-
"lint": "eslint --fix 'src/**/*.{js,ts}'",
|
|
17
|
-
"
|
|
16
|
+
"lint:src": "eslint --fix 'src/**/*.{js,ts}'",
|
|
17
|
+
"lint:test": "eslint --fix 'test/**/*.{js,ts}'",
|
|
18
|
+
"lint": "npm run lint:src && npm run lint:test",
|
|
19
|
+
"format:src": "prettier --write 'src/**/*.{js,ts}'",
|
|
20
|
+
"format:test": "prettier --write 'test/**/*.{js,ts}'",
|
|
21
|
+
"format": "npm run format:src && npm run format:test",
|
|
22
|
+
"fix:src": "npm run lint:src && npm run format:src",
|
|
23
|
+
"fix:test": "npm run lint:test && npm run format:test",
|
|
24
|
+
"fix": "npm run fix:src && npm run fix:test",
|
|
18
25
|
"update:test-deps": "npm i avl-tree-typed binary-tree-typed bst-typed deque-typed directed-graph-typed doubly-linked-list-typed graph-typed heap-typed linked-list-typed max-heap-typed max-priority-queue-typed min-heap-typed min-priority-queue-typed priority-queue-typed singly-linked-list-typed stack-typed tree-multiset-typed trie-typed undirected-graph-typed queue-typed --save-dev",
|
|
19
26
|
"test": "jest",
|
|
20
27
|
"deps:check": "dependency-cruiser src",
|
|
21
28
|
"changelog": "auto-changelog",
|
|
22
29
|
"coverage:badge": "istanbul-badges-readme",
|
|
23
|
-
"
|
|
24
|
-
"deploy": "npm run package && npm publish"
|
|
30
|
+
"ci": "env && npm run lint && npm run build && npm run test && git fetch --tags && npm run changelog"
|
|
25
31
|
},
|
|
26
32
|
"repository": {
|
|
27
33
|
"type": "git",
|
|
28
34
|
"url": "git+https://github.com/zrwusa/data-structure-typed.git"
|
|
29
35
|
},
|
|
36
|
+
"author": "Tyler Zeng zrwusa@gmail.com",
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"@zrwusa:registry": "https://npm.pkg.github.com"
|
|
40
|
+
},
|
|
41
|
+
"bugs": {
|
|
42
|
+
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/benchmark": "^2.1.3",
|
|
47
|
+
"@types/jest": "^29.5.3",
|
|
48
|
+
"@types/node": "^20.4.9",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
50
|
+
"@typescript-eslint/parser": "^5.11.0",
|
|
51
|
+
"auto-changelog": "^2.4.0",
|
|
52
|
+
"avl-tree-typed": "^1.31.0",
|
|
53
|
+
"benchmark": "^2.1.4",
|
|
54
|
+
"binary-tree-typed": "^1.31.0",
|
|
55
|
+
"bst-typed": "^1.31.0",
|
|
56
|
+
"dependency-cruiser": "^13.1.2",
|
|
57
|
+
"deque-typed": "^1.31.0",
|
|
58
|
+
"directed-graph-typed": "^1.31.0",
|
|
59
|
+
"doubly-linked-list-typed": "^1.31.0",
|
|
60
|
+
"eslint": "^7.32.0",
|
|
61
|
+
"eslint-config-prettier": "^8.3.0",
|
|
62
|
+
"eslint-import-resolver-alias": "^1.1.2",
|
|
63
|
+
"eslint-import-resolver-typescript": "^2.5.0",
|
|
64
|
+
"eslint-plugin-import": "^2.25.4",
|
|
65
|
+
"graph-typed": "^1.31.0",
|
|
66
|
+
"heap-typed": "^1.31.0",
|
|
67
|
+
"istanbul-badges-readme": "^1.8.5",
|
|
68
|
+
"jest": "^29.6.2",
|
|
69
|
+
"linked-list-typed": "^1.31.0",
|
|
70
|
+
"max-heap-typed": "^1.31.0",
|
|
71
|
+
"max-priority-queue-typed": "^1.31.0",
|
|
72
|
+
"min-heap-typed": "^1.31.0",
|
|
73
|
+
"min-priority-queue-typed": "^1.31.0",
|
|
74
|
+
"prettier": "^3.0.3",
|
|
75
|
+
"priority-queue-typed": "^1.31.0",
|
|
76
|
+
"queue-typed": "^1.31.0",
|
|
77
|
+
"singly-linked-list-typed": "^1.31.0",
|
|
78
|
+
"stack-typed": "^1.31.0",
|
|
79
|
+
"tree-multiset-typed": "^1.31.0",
|
|
80
|
+
"trie-typed": "^1.31.0",
|
|
81
|
+
"ts-jest": "^29.1.1",
|
|
82
|
+
"ts-loader": "^9.4.4",
|
|
83
|
+
"typedoc": "^0.24.8",
|
|
84
|
+
"typescript": "^4.9.5",
|
|
85
|
+
"undirected-graph-typed": "^1.31.0",
|
|
86
|
+
"webpack": "^5.88.2",
|
|
87
|
+
"webpack-cli": "^5.1.4"
|
|
88
|
+
},
|
|
30
89
|
"keywords": [
|
|
31
90
|
"data",
|
|
32
91
|
"structure",
|
|
@@ -41,7 +100,6 @@
|
|
|
41
100
|
"in data structure",
|
|
42
101
|
"DataStructure",
|
|
43
102
|
"DataStructures",
|
|
44
|
-
|
|
45
103
|
"binary",
|
|
46
104
|
"depth",
|
|
47
105
|
"breadth",
|
|
@@ -69,13 +127,11 @@
|
|
|
69
127
|
"ts",
|
|
70
128
|
"javascript",
|
|
71
129
|
"typscript",
|
|
72
|
-
|
|
73
130
|
"Node.js",
|
|
74
131
|
"CommonJS",
|
|
75
132
|
"ES6",
|
|
76
133
|
"UMD",
|
|
77
134
|
"esmodule",
|
|
78
|
-
|
|
79
135
|
"java.util",
|
|
80
136
|
"c++ std",
|
|
81
137
|
"Python collections",
|
|
@@ -176,55 +232,5 @@
|
|
|
176
232
|
"tarjan",
|
|
177
233
|
"Tarjan",
|
|
178
234
|
"Tarjan's"
|
|
179
|
-
]
|
|
180
|
-
"author": "Tyler Zeng zrwusa@gmail.com",
|
|
181
|
-
"license": "MIT",
|
|
182
|
-
"bugs": {
|
|
183
|
-
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
|
184
|
-
},
|
|
185
|
-
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
|
|
186
|
-
"devDependencies": {
|
|
187
|
-
"@types/benchmark": "^2.1.3",
|
|
188
|
-
"@types/jest": "^29.5.3",
|
|
189
|
-
"@types/node": "^20.4.9",
|
|
190
|
-
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
191
|
-
"@typescript-eslint/parser": "^5.11.0",
|
|
192
|
-
"auto-changelog": "^2.4.0",
|
|
193
|
-
"avl-tree-typed": "^1.31.0",
|
|
194
|
-
"benchmark": "^2.1.4",
|
|
195
|
-
"binary-tree-typed": "^1.31.0",
|
|
196
|
-
"bst-typed": "^1.31.0",
|
|
197
|
-
"dependency-cruiser": "^13.1.2",
|
|
198
|
-
"deque-typed": "^1.31.0",
|
|
199
|
-
"directed-graph-typed": "^1.31.0",
|
|
200
|
-
"doubly-linked-list-typed": "^1.31.0",
|
|
201
|
-
"eslint": "^7.32.0",
|
|
202
|
-
"eslint-config-prettier": "^8.3.0",
|
|
203
|
-
"eslint-import-resolver-alias": "^1.1.2",
|
|
204
|
-
"eslint-import-resolver-typescript": "^2.5.0",
|
|
205
|
-
"eslint-plugin-import": "^2.25.4",
|
|
206
|
-
"graph-typed": "^1.31.0",
|
|
207
|
-
"heap-typed": "^1.31.0",
|
|
208
|
-
"istanbul-badges-readme": "^1.8.5",
|
|
209
|
-
"jest": "^29.6.2",
|
|
210
|
-
"linked-list-typed": "^1.31.0",
|
|
211
|
-
"max-heap-typed": "^1.31.0",
|
|
212
|
-
"max-priority-queue-typed": "^1.31.0",
|
|
213
|
-
"min-heap-typed": "^1.31.0",
|
|
214
|
-
"min-priority-queue-typed": "^1.31.0",
|
|
215
|
-
"prettier": "^3.0.3",
|
|
216
|
-
"priority-queue-typed": "^1.31.0",
|
|
217
|
-
"queue-typed": "^1.31.0",
|
|
218
|
-
"singly-linked-list-typed": "^1.31.0",
|
|
219
|
-
"stack-typed": "^1.31.0",
|
|
220
|
-
"tree-multiset-typed": "^1.31.0",
|
|
221
|
-
"trie-typed": "^1.31.0",
|
|
222
|
-
"ts-jest": "^29.1.1",
|
|
223
|
-
"ts-loader": "^9.4.4",
|
|
224
|
-
"typedoc": "^0.24.8",
|
|
225
|
-
"typescript": "^4.9.5",
|
|
226
|
-
"undirected-graph-typed": "^1.31.0",
|
|
227
|
-
"webpack": "^5.88.2",
|
|
228
|
-
"webpack-cli": "^5.1.4"
|
|
229
|
-
}
|
|
235
|
+
]
|
|
230
236
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export class AaTree {}
|