#skiplist — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #skiplist, aggregated by home.social.
-
🎩✨ Behold the majestic skiplist: the data structure nobody asked for but everyone pretends to need! 🤡 This article bravely navigates a sea of #buzzwords and sales pitches, leaving readers wondering if the true purpose of skiplists is to skip the point entirely. 🚀
https://antithesis.com/blog/2026/skiptrees/ #skiplist #datastructure #techhumor #programming #satire #HackerNews #ngated -
🎩✨ Behold the majestic skiplist: the data structure nobody asked for but everyone pretends to need! 🤡 This article bravely navigates a sea of #buzzwords and sales pitches, leaving readers wondering if the true purpose of skiplists is to skip the point entirely. 🚀
https://antithesis.com/blog/2026/skiptrees/ #skiplist #datastructure #techhumor #programming #satire #HackerNews #ngated -
Just did some benchmarking on data structures in Rust and was surprised to see that SkipList is slower than Vector and HashMap for search operations!
Insertion times are pretty good, but searching is where the SkipList falls behind.
If you're curious about this too, check out my little demo project: https://github.com/sh4ka/skiplist-demo
It's a simple benchmarking program that inserts 1 million elements and then searches for one of them.
#Rustlang #DataStructures #SkipList #Vector #HashMap #Programming
-
Just did some benchmarking on data structures in Rust and was surprised to see that SkipList is slower than Vector and HashMap for search operations!
Insertion times are pretty good, but searching is where the SkipList falls behind.
If you're curious about this too, check out my little demo project: https://github.com/sh4ka/skiplist-demo
It's a simple benchmarking program that inserts 1 million elements and then searches for one of them.
#Rustlang #DataStructures #SkipList #Vector #HashMap #Programming