data-structure-typed 1.45.2 → 1.45.3
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/README.md +38 -1
- package/package.json +1 -1
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.45.
|
|
11
|
+
## [v1.45.3](https://github.com/zrwusa/data-structure-typed/compare/v1.35.0...main) (upcoming)
|
|
12
12
|
|
|
13
13
|
### Changes
|
|
14
14
|
|
package/README.md
CHANGED
|
@@ -71,15 +71,52 @@ const {
|
|
|
71
71
|
} = dataStructureTyped;
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
+
#### Binary Tree
|
|
75
|
+
[Try it out](https://vivid-algorithm.vercel.app/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
76
|
+
|
|
74
77
|

|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
#### Binary Tree DFS
|
|
82
|
+
[Try it out](https://vivid-algorithm.vercel.app/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
83
|
+
|
|
75
84
|

|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
#### AVL Tree
|
|
89
|
+
[Try it out](https://vivid-algorithm.vercel.app/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
90
|
+
|
|
76
91
|

|
|
77
|
-
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
#### Tree Multi Map
|
|
95
|
+
[Try it out](https://vivid-algorithm.vercel.app/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
96
|
+
|
|
97
|
+

|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
#### Matrix
|
|
102
|
+
[Try it out](https://vivid-algorithm.vercel.app/algorithm/graph/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
103
|
+
|
|
78
104
|

|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
#### Directed Graph
|
|
108
|
+
[Try it out](https://vivid-algorithm.vercel.app/algorithm/graph/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
109
|
+
|
|
79
110
|

|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
#### Map Graph
|
|
114
|
+
[Try it out](https://vivid-algorithm.vercel.app/algorithm/graph/), or you can execute your own code using our [visual tool](https://github.com/zrwusa/vivid-algorithm)
|
|
115
|
+
|
|
80
116
|

|
|
81
117
|
|
|
82
118
|
|
|
119
|
+
|
|
83
120
|
## Code Snippets
|
|
84
121
|
|
|
85
122
|
### Binary Search Tree (BST) snippet
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "data-structure-typed",
|
|
3
|
-
"version": "1.45.
|
|
3
|
+
"version": "1.45.3",
|
|
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/cjs/index.js",
|
|
6
6
|
"module": "dist/mjs/index.js",
|