-
Notifications
You must be signed in to change notification settings - Fork 269
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
Added implementation for Splay Trees. #157
Conversation
files have trailing whitespaces in it. If you are using vs code, there is an option to remove trailing whitespaces on save. Referencehttps://stackoverflow.com/questions/30884131/remove-trailing-spaces-automatically-or-with-a-shortcut |
Codecov Report
@@ Coverage Diff @@
## master #157 +/- ##
=============================================
- Coverage 98.578% 98.536% -0.042%
=============================================
Files 24 24
Lines 2110 2187 +77
=============================================
+ Hits 2080 2155 +75
- Misses 30 32 +2
|
adding tests will increase coverage. |
@Vanshika266 I hope that you are aware that official coding period of RGSoC, 2020 starts from July. Till 31st March you have to submit your application on RGSoC website. See, https://railsgirlssummerofcode.org/students/application/#apply for steps of applying. |
Yes, I will start working on the application. |
@Vanshika266 Before adding implementation for |
@Vanshika266 |
I have added tests for |
Coverage is low. More tests are needed for the lines marked in red in this page. |
Any updates? |
Sorry, pushed these commits by mistake. Fixing it. |
Sorry for the delay. I have updated the implementation of SplayTree. I have removed the function split_array, and have now used the implementation of pre-order traversal from BinaryTreeTraversal Class. |
This comment has been minimized.
This comment has been minimized.
Thanks. |
Added code for splay trees with public APIs insert, delete, splay. The work is in reference with issue #109