-
Notifications
You must be signed in to change notification settings - Fork 6
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
cl-skip-list #19
Comments
Freedom from deadlocks |
I'd look at:
Also:
My guess is that there's some optimization in the implementation of the hash table that isn't avalible (or implemented) in the skip list. |
I just wanted to have in the map the value which I'll be quering.
I'm dividing to POFTHEDAY> (/ 1 1000)
1/1000
POFTHEDAY> (/ 10 1000)
1/100
POFTHEDAY> (/ 100 1000)
1/10
POFTHEDAY> (type-of *)
RATIO |
Ah, but if you always fetch only a single predetermined object, then it can be luck that one data structure happens to have it at a more shallow place than the other. I believe that you need to fetch random objects in order to get statistical results. |
cl-skip-list
https://40ants.com/lisp-project-of-the-day/2020/07/0121-cl-skip-list.html
The text was updated successfully, but these errors were encountered: