data-structure-typed 1.21.3 → 1.21.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +20 -20
package/README.md CHANGED
@@ -44,11 +44,11 @@ const {Heap, MinHeap, SinglyLinkedList, Stack, AVLTreeNode, BST, Trie, DirectedG
44
44
 
45
45
  [API Docs](https://data-structure-typed-docs.vercel.app)
46
46
 
47
- [Live Examples](https://data-structure-typed-examples.vercel.app)
47
+ [Live Examples](https://vivid-algorithm.vercel.app)
48
48
 
49
- [//]: # (<a href="https://data-structure-typed-examples.vercel.app" target="_blank">Live Examples</a>)
49
+ [//]: # (<a href="https://vivid-algorithm.vercel.app" target="_blank">Live Examples</a>)
50
50
 
51
- <a href="https://github.com/zrwusa/data-structure-typed-examples" target="_blank">Examples Repository</a>
51
+ <a href="https://github.com/zrwusa/vivid-algorithm" target="_blank">Examples Repository</a>
52
52
 
53
53
  ### Binary Search Tree (BST) snippet
54
54
 
@@ -695,4 +695,4 @@ import {UndirectedGraph} from 'data-structure-typed';
695
695
 
696
696
  ![complexities](https://github.com/zrwusa/assets/blob/master/images/data-structure-typed/assets/complexities-diff.jpg?raw=true)
697
697
 
698
- ![complexities of data structures](https://github.com/zrwusa/assets/blob/master/images/data-structure-typed/assets/data-structure-complexities.jpg?raw=true)
698
+ ![complexities of data structures](https://github.com/zrwusa/assets/blob/master/images/data-structure-typed/assets/data-structure-complexities.jpg?raw=true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "data-structure-typed",
3
- "version": "1.21.3",
3
+ "version": "1.21.4",
4
4
  "description": "Javascript & TypeScript Data Structure Library, meticulously crafted to empower developers with a versatile set of essential data structures. Our library includes a wide range of data structures, such as Binary Tree, AVL Tree, Binary Search Tree (BST), Tree Multiset, Segment Tree, Binary Indexed Tree, Graph, Directed Graph, Undirected Graph, Singly Linked List, Hash, CoordinateSet, CoordinateMap, Heap, Doubly Linked List, Priority Queue, Max Priority Queue, Min Priority Queue, Queue, ObjectDeque, ArrayDeque, Stack, and Trie. Each data structure is thoughtfully designed and implemented using TypeScript to provide efficient, reliable, and easy-to-use solutions for your programming needs. Whether you're optimizing algorithms, managing data, or enhancing performance, our TypeScript Data Structure Library is your go-to resource. Elevate your coding experience with these fundamental building blocks for software development.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -61,31 +61,31 @@
61
61
  "devDependencies": {
62
62
  "@types/jest": "^29.5.3",
63
63
  "@types/node": "^20.4.9",
64
- "avl-tree-typed": "^1.21.2",
65
- "binary-tree-typed": "^1.21.2",
66
- "bst-typed": "^1.21.2",
64
+ "avl-tree-typed": "^1.21.3",
65
+ "binary-tree-typed": "^1.21.3",
66
+ "bst-typed": "^1.21.3",
67
67
  "dependency-cruiser": "^13.1.2",
68
- "deque-typed": "^1.21.2",
69
- "directed-graph-typed": "^1.21.2",
70
- "doubly-linked-list-typed": "^1.21.2",
71
- "graph-typed": "^1.21.2",
72
- "heap-typed": "^1.21.2",
68
+ "deque-typed": "^1.21.3",
69
+ "directed-graph-typed": "^1.21.3",
70
+ "doubly-linked-list-typed": "^1.21.3",
71
+ "graph-typed": "^1.21.3",
72
+ "heap-typed": "^1.21.3",
73
73
  "jest": "^29.6.2",
74
- "linked-list-typed": "^1.21.2",
75
- "max-heap-typed": "^1.21.2",
76
- "max-priority-queue-typed": "^1.21.2",
77
- "min-heap-typed": "^1.21.2",
78
- "min-priority-queue-typed": "^1.21.2",
79
- "priority-queue-typed": "^1.21.2",
80
- "singly-linked-list-typed": "^1.21.2",
81
- "stack-typed": "^1.21.2",
82
- "tree-multiset-typed": "^1.21.2",
83
- "trie-typed": "^1.21.2",
74
+ "linked-list-typed": "^1.21.3",
75
+ "max-heap-typed": "^1.21.3",
76
+ "max-priority-queue-typed": "^1.21.3",
77
+ "min-heap-typed": "^1.21.3",
78
+ "min-priority-queue-typed": "^1.21.3",
79
+ "priority-queue-typed": "^1.21.3",
80
+ "singly-linked-list-typed": "^1.21.3",
81
+ "stack-typed": "^1.21.3",
82
+ "tree-multiset-typed": "^1.21.3",
83
+ "trie-typed": "^1.21.3",
84
84
  "ts-jest": "^29.1.1",
85
85
  "ts-loader": "^9.4.4",
86
86
  "typedoc": "^0.24.8",
87
87
  "typescript": "^4.9.5",
88
- "undirected-graph-typed": "^1.21.2",
88
+ "undirected-graph-typed": "^1.21.3",
89
89
  "webpack": "^5.88.2",
90
90
  "webpack-cli": "^5.1.4"
91
91
  }