@raikuxq/alg-ds 1.2.3 → 1.2.4
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 +9 -1
- package/package.json +26 -1
package/README.md
CHANGED
|
@@ -94,11 +94,19 @@ Implements [ILinearStorageRA](src/app/types/ILinearStorageRA.ts) interface.
|
|
|
94
94
|
[SingleLinkedList](src/app/data-structures/LinkedList/SingleLinkedList/SingleLinkedList.ts)
|
|
95
95
|
[ [ tests ] ](test/unit/data-structures/linked-list/linked-list.test.ts)
|
|
96
96
|
— Extends abstract linked list with implementation of one-way linking.
|
|
97
|
-
Implements [IIterable](src/app/types/IIterable.ts) interface.
|
|
98
97
|
|
|
99
98
|
[DoubleLinkedList](src/app/data-structures/LinkedList/DoubleLinkedList/DoubleLinkedList.ts)
|
|
100
99
|
[ [ tests ] ](test/unit/data-structures/linked-list/linked-list.test.ts)
|
|
101
100
|
— Extends abstract linked list with implementation of two-way linking.
|
|
101
|
+
|
|
102
|
+
[IterableSingleLinkedList](src/app/data-structures/LinkedList/SingleLinkedList/IterableSingleLinkedList.ts)
|
|
103
|
+
[ [ tests ] ](test/unit/data-structures/linked-list/linked-list-iterable.test.ts)
|
|
104
|
+
— Extends single linked list with iterator implementation.
|
|
105
|
+
Implements [IIterable](src/app/types/IIterable.ts) interface.
|
|
106
|
+
|
|
107
|
+
[IterableDoubleLinkedList](src/app/data-structures/LinkedList/DoubleLinkedList/IterableDoubleLinkedList.ts)
|
|
108
|
+
[ [ tests ] ](test/unit/data-structures/linked-list/linked-list-iterable.test.ts)
|
|
109
|
+
— Extends double linked list with implementation of two-way linking.
|
|
102
110
|
Implements [IBiDirectIterable](src/app/types/IBiDirectIterable.ts) interface.
|
|
103
111
|
|
|
104
112
|
|
package/package.json
CHANGED
|
@@ -14,6 +14,31 @@
|
|
|
14
14
|
"type": "git",
|
|
15
15
|
"url": "https://github.com/raikuxq/lab-ts-algorithms"
|
|
16
16
|
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"algorithms",
|
|
19
|
+
"data structures",
|
|
20
|
+
"graph",
|
|
21
|
+
"undirected graph",
|
|
22
|
+
"directed graph",
|
|
23
|
+
"breadth-first",
|
|
24
|
+
"depth-first",
|
|
25
|
+
"BFS",
|
|
26
|
+
"DFS",
|
|
27
|
+
"shortest path",
|
|
28
|
+
"binary search tree",
|
|
29
|
+
"randomized binary search tree",
|
|
30
|
+
"BST",
|
|
31
|
+
"dijkstra",
|
|
32
|
+
"quick sort",
|
|
33
|
+
"merge sort",
|
|
34
|
+
"binary search",
|
|
35
|
+
"linked list",
|
|
36
|
+
"doubly linked list",
|
|
37
|
+
"singly linked list",
|
|
38
|
+
"stack",
|
|
39
|
+
"queue",
|
|
40
|
+
"hash table"
|
|
41
|
+
],
|
|
17
42
|
"main": "./lib/src/exports.js",
|
|
18
43
|
"types": "./lib/src/exports.d.ts",
|
|
19
44
|
"files": [
|
|
@@ -43,5 +68,5 @@
|
|
|
43
68
|
"vuepress": "^2.0.0-beta.48"
|
|
44
69
|
},
|
|
45
70
|
"dependencies": {},
|
|
46
|
-
"version": "1.2.
|
|
71
|
+
"version": "1.2.4"
|
|
47
72
|
}
|