-
-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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 new Data Structure: SkipList #827
Comments
Sure, I'm gonna take a crack at this! |
I want to take this i can fix |
i still want to do this eventually but I haven't had time yet, so i guess you can go for it |
class Node { class SkipList { randomLevel() { insert(value) {
} delete(value) {
} find(value) {
} This code provides the basic functionality for a skip list data structure, including the ability to insert, delete, and find values within the list. |
https://en.wikipedia.org/wiki/Skip_list
I learned about this data structure in my distributed systems class. Could we add it to the project?
The text was updated successfully, but these errors were encountered: