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

Implement Binary Search Tree #13

Open
4 tasks
levyjonathan31 opened this issue Jan 7, 2024 · 3 comments
Open
4 tasks

Implement Binary Search Tree #13

levyjonathan31 opened this issue Jan 7, 2024 · 3 comments
Labels
enhancement New feature or request

Comments

@levyjonathan31
Copy link
Collaborator

levyjonathan31 commented Jan 7, 2024

Description

Implement a Binary Search Tree class that inherits from the already implemented nary Tree class.

TODO

  • Each node has at most 2 children per node
  • Values to the left of any given node must be less than the value of that node
  • Values to the right of any given node must be greater than the value of that node
  • Insertion begins by comparing the value at root node and traverses down the tree
@levyjonathan31 levyjonathan31 added enhancement New feature or request good first issue Good for newcomers labels Jan 7, 2024
@levyjonathan31 levyjonathan31 removed the good first issue Good for newcomers label Jan 25, 2024
@trumanjmoore
Copy link

Im in SWE and looking for an issue to use, is this available?

@levyjonathan31
Copy link
Collaborator Author

Im in SWE and looking for an issue to use, is this available?

It is available however I do not recommend it for the intro to SWE assignment, especially if you are unfamiliar with the Manim library.

@trumanjmoore
Copy link

Understood, thank you

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

No branches or pull requests

2 participants