-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem :
this tree data structure has a large node size than other npm packages.
And 'insert' method is relatively slower than 'erase' method.
I think the reason of above situation is that 'insert' method handles node object creating and it affects to efficiency.
Unlike other packages, there are some additional elements in TreeNode.
- point parent node.
- get/set method.
- getPrev/getNext method.
but,
- is useful for backtracking.
- is good for knowing access restrictions.
- is good for acture use or method chaining.
how to treat this problem?
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request