Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tresize&find by val #20

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

FatAndreasbot
Copy link

Added some wanted by me functionality

@kingledion
Copy link
Owner

Depending on your use case, if you really want to search by value, you have two options for a well implemented function.

  1. You can hash the value T that you want to store and then use that hash as the primary key. Then, use the existing Find function to return your desired Node(s)
  2. If you still need a distinct primary key, you can implement an optional second index on values. This would work like the above, it would store a map of the hashed values of T to pointers to the desired Node.

The first would be best implemented as a wrapper around this code, the second would be an addition to this.

Both of these solutions will be much faster O(1), at the cost of some additional memory allocation.

@FatAndreasbot
Copy link
Author

The issue with a hash index is that we can store identical data in the same tree. That's why I created two methods for the Tree structure. "FindByValue", which returns the first found, and a false "ok" value, if the node data is not unique. And "FindMultipleByValue", which will return a list of all nodes with the searched data/value.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants