Revone
|
5d41696998
|
release: 1.51.6
|
2024-01-18 19:18:15 +08:00 |
|
Revone
|
c6b9564db7
|
release: 1.51.4
|
2024-01-17 22:43:32 +08:00 |
|
Revone
|
25e9f36577
|
feat: Remove the meaningless Tree data structure.
refactor: Adjust the logic of isRealNode for a slight performance improvement.
docs: table fixed
|
2024-01-16 11:26:43 +08:00 |
|
Revone
|
6ca47958bf
|
release: 1.51.2
|
2024-01-15 21:14:50 +08:00 |
|
Revone
|
56f1fabfca
|
refactor: Renaming SENTINEL to NIL and placing the NIL node in the BinaryTree allows for direct equality checks in isNIL and isRealNode, avoiding excessive operations to improve performance. As a result, the performance of the get method in AVLTree has tripled.
|
2024-01-15 21:05:42 +08:00 |
|
Revone
|
9915ce9a0d
|
Refactor: Rename _defaultOneParamCallback to _DEFAULT_CALLBACK. Adopt early return code style in the ensureNode method. Rename some internal recursive method names.
|
2024-01-15 12:12:01 +08:00 |
|
Revone
|
46cdf2b668
|
release: 1.50.9
|
2024-01-14 20:57:07 +08:00 |
|
Revone
|
25de27cf6c
|
fix: Explicitly specify IterationType.
|
2024-01-14 18:59:28 +08:00 |
|
Revone
|
d0b3fcf164
|
release: 1.50.7
|
2024-01-12 14:33:45 +08:00 |
|
Revone
|
e1631a8e3e
|
refactor: Define a generic CRUD enum to represent operational states.
|
2024-01-12 11:07:33 +08:00 |
|
Revone
|
1f8fc1487c
|
Refactor: Due to critical issues in the previous implementation of the Red-Black Tree, it has been deprecated and replaced with a new implementation of both the Red-Black Tree and TreeMultiMap.
|
2024-01-11 20:13:02 +08:00 |
|
Revone
|
4747839d88
|
Refactor: Standardize addition and removal methods for all sequential data structures to push, pop, shift, unshift.
|
2024-01-09 12:04:50 +08:00 |
|
Revone
|
e2ab386df3
|
release: 1.50.3
|
2024-01-08 09:49:33 +08:00 |
|
Revone
|
ba16f311c3
|
Refactor: Organize the access permissions of all member variables. Docs: Partial documentation for time and space complexity.
|
2024-01-05 15:37:28 +08:00 |
|
Revone
|
ec649bd8bb
|
test: reorgnization. docs: improved a lit bit
|
2023-12-30 11:49:59 +08:00 |
|
Revone
|
baf1be4035
|
release: 1.50.0. docs: traversal methods
|
2023-12-29 11:24:25 +08:00 |
|
Revone
|
34d4abd9e6
|
fix: #38 Removed includeNull parameter from traversal methods.
feat: Removed unnecessary methods isNotNodeInstance and subTreeTraverse.
refactor: Organized the overloads of traversal methods.
|
2023-12-29 11:15:19 +08:00 |
|
Revone
|
689aa0f57e
|
feat: Provide convenient option of the raw data processing function 'toEntry' in HashMap.options.
|
2023-12-25 20:24:41 +08:00 |
|
Revone
|
eb590d6c27
|
feat: Remove support for the 'variant' option parameter in Red-Black Tree, meaning no support for reverse Red-Black Tree.
fix: Fix bug in the return value of the Red-Black Tree delete method.
test: Test the clone methods of all the binary tree data structures.
|
2023-12-25 10:56:04 +08:00 |
|
Revone
|
c949b5b741
|
refactor: Rearrange constructor parameters for all data structures, with the first parameter being the output and the second parameter being a configuration object. Make all configuration object properties optional.
fix: Provide optional parameters for inheritable data structures to facilitate inheritance. #64
|
2023-12-24 17:44:55 +08:00 |
|
Revone
|
0708509f3e
|
release: 1.49.5
|
2023-12-22 20:04:08 +08:00 |
|
Revone
|
dc6ef95f78
|
style: code base reformat
|
2023-12-21 10:26:45 +08:00 |
|
Revone
|
c3db558607
|
Refactor: The default callback function now supports returning values for null and undefined nodes with undefined keys. The deleteVertex method in AbstractGraph has been made abstract. Unnecessary magnitude variables have been removed from the magnitude function. fix: In directed and undirected graphs, the deleteVertex method now removes edges from adjacent nodes when deleting a vertex.
|
2023-12-21 10:01:04 +08:00 |
|
Revone
|
6ceaf21fba
|
release: 1.49.2
|
2023-12-15 09:53:59 +08:00 |
|
Revone
|
61369adbdd
|
test: Refine the test cases.
|
2023-12-12 10:13:34 +08:00 |
|
Revone
|
9d4228c9fe
|
refactor: Represent the optional parameters in the dijkstraWithoutHeap and dijkstra methods using default arguments. Use the Heap data structure instead of PriorityQueue.
|
2023-12-11 09:41:24 +08:00 |
|
Revone
|
26208e9157
|
release: 1.48.9
|
2023-12-08 20:03:48 +08:00 |
|
Revone
|
c3b79b70f6
|
docs: Add a GITHUB stars badge. Adjust the order of the table. Test: Specify the type of binary tree constructor.
|
2023-12-08 10:07:51 +08:00 |
|
Revone
|
e167771620
|
docs: Benchmarking metrics compared to native JavaScript
|
2023-12-08 09:04:49 +08:00 |
|
Revone
|
a02a9a94d2
|
refactor: Rewrite the lastKey method. The BinaryTree.add method filters out duplicate additions. Rename popLast and popFirst to pollLast and pollFirst.
|
2023-12-07 19:34:20 +08:00 |
|
Revone
|
1c8324147f
|
feat: The addMany method in binary tree data structures supports both addMany(keys, values) and addMany(entries).
|
2023-12-07 10:19:17 +08:00 |
|
Revone
|
ce99f7988e
|
release: 1.48.4
|
2023-12-06 10:42:12 +08:00 |
|
Revone
|
785e92a87f
|
release: 1.48.3
|
2023-12-04 22:05:15 +08:00 |
|
Revone
|
7f5eb6cb70
|
refactor: Extract all methods such as 'some', 'every', 'entries', 'keys', 'values', 'forEach', 'reduce' into the base classes 'IterableElementBase' and 'IterablePairBase'.
|
2023-12-02 22:15:18 +08:00 |
|
Revone
|
22fc90f221
|
release: 1.48.0
|
2023-11-27 13:42:56 +08:00 |
|
Revone
|
e1e672b3b5
|
refactor: Extract the isNode and exemplarToNode methods to achieve best practices.
|
2023-11-27 13:38:26 +08:00 |
|
Revone
|
20550fb718
|
feat: Implement the [Symbol.iterator], forEach, filter, map, and reduce methods for Graph, specifically targeting the nodes. fix: type error fixed
|
2023-11-27 11:24:23 +08:00 |
|
Revone
|
f3df66eef3
|
refactor: In Graph data structures, only use 'undefined' and abandon the design where both 'null' and 'undefined' coexist.
|
2023-11-26 20:11:29 +08:00 |
|
Revone
|
76db084bda
|
refactor: Explicitly call the super.addMany method. chore: reformat project configs
|
2023-11-25 20:59:34 +08:00 |
|
Revone
|
451f6c5e31
|
release: 1.47.6
|
2023-11-24 08:49:18 +08:00 |
|
Revone
|
c8210d9b0c
|
release: 1.47.5
|
2023-11-23 13:22:41 +08:00 |
|
Revone
|
5cf88d098e
|
feat: All data structures except Graph have implemented *[Symbol.iterator], forEach, filter, map, reduce methods.
|
2023-11-23 13:19:13 +08:00 |
|
Revone
|
37e32fedcf
|
chore: red-black-tree-typed npm module added. All the sub modules READMEs are modified
|
2023-11-22 22:10:00 +08:00 |
|
Revone
|
3205f90cf6
|
docs: Reorganize some content in the README
|
2023-11-22 19:00:06 +08:00 |
|
Revone
|
b53156fb48
|
fix: createTree return type check
|
2023-11-22 17:37:43 +08:00 |
|
Revone
|
edbbf4a951
|
fix: type check for 'typeof this' is not supported in TS 4.9.5
|
2023-11-22 17:31:51 +08:00 |
|
Revone
|
54c74f9af6
|
feat: The print method supports switches for empty nodes and guardian nodes. refactor: It eliminates some unnecessary type definitions.
|
2023-11-21 17:30:57 +08:00 |
|
Revone
|
9ae8416df1
|
docs: Automate the writing of the table of contents for README.md. chore:Remove unused npm packages.
|
2023-11-21 14:16:06 +08:00 |
|
Revone
|
42345f813f
|
chore: Perfectly optimize keywords and project descriptions.
|
2023-11-21 11:02:10 +08:00 |
|
Revone
|
d3a6bdac25
|
fix: type error fixed. docs: Remove unnecessary 'Software Engineering Design Standards'.
|
2023-11-20 15:14:13 +08:00 |
|