-
-
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 Recursive tree traversal techniques #1865
feat: add Recursive tree traversal techniques #1865
Conversation
@Panquesito7 can you check the PR now, thanks. |
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.
Almost there! 😄
@Panquesito7 changes done. |
Hey there! Hmm, I don't see any new commits 👀 I think you forgot to push or something, not sure. 😅 |
@Panquesito7 check now, had to manually do all the changes. |
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.
LGTM 🚀 Thank you for your contribution! 😄👍
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.
I feel this makes it cleaner to read. If you like this @Lazeeez @Panquesito7 we can change it as suggested thanks.
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com>
374386f
to
409bdfd
Compare
@mishraabhinn changes made, will keep it in mind next time, thanks. |
Description of Change
All Tree traversal techniques (inorder, postorder, preorder) with recursive functions.
Checklist
Notes: Added tree traversal implementations with recursive functions.