-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
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
feat: add new implementation of binary search tree #1208
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
If you would like to add a new implementation, review the guidelines. Review the guidelines and the checklist. |
kvedala
added
automated tests are failing
Do not merge until tests pass
awaiting modification
Do not merge until modifications are made
enhancement
New feature or request
good first issue
Good for newcomers
labels
Oct 7, 2020
Walt280
changed the title
fix: revamp binary_search_tree.cpp
feat: add new implementation of binary search tree
Oct 7, 2020
Okay, I've moved the implementation into a new file. |
This PR is ready for review. |
kvedala
requested changes
Oct 16, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
kvedala
requested changes
Oct 21, 2020
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
kvedala
approved these changes
Feb 5, 2021
ayaankhan98
pushed a commit
to ayaankhan98/C-Plus-Plus
that referenced
this pull request
Feb 11, 2021
* fix: revamp binary_search_tree.cpp to use generics, oop, and modern c++ features * fix: remove make_unique from code * fix: fix some clang-tidy errors in binary_search_tree.cpp * Move new implementation into new file, restore old file. * Reset binary_search_tree.cpp to original implementation. * Add link to new implementation. * fix: add suggested fixes (see PR) * Implement comment suggestions. * Update data_structures/binary_search_tree2.cpp Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com> * Fix additional comments. Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
automated tests are failing
Do not merge until tests pass
awaiting modification
Do not merge until modifications are made
enhancement
New feature or request
good first issue
Good for newcomers
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of Change
Add new implementation of binary search tree code using oop, generics, and smart pointers.
Add basic documentation to each of the BST functions.
Add tests for each BST function.
Checklist