Skip to content

GH-147: Skiplist in C++ #148

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

Merged
merged 17 commits into from
Feb 8, 2023
Prev Previous commit
Next Next commit
update
  • Loading branch information
rain1024 committed Feb 3, 2023
commit f3ab5f8b0e53e1168c6541de9affdff35375bd1c
4 changes: 2 additions & 2 deletions concepts/cpp/skip-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

From wikipedia

> A skip list (or skiplist) is a probabilistic data structure that allows $O(log n)$
average complexity for search as well as $O(log n)$ average complexity for insertion
> A skip list (or skiplist) is a probabilistic data structure that allows $O(log\ n)$
average complexity for search as well as $O(log\ n)$ average complexity for insertion
within an ordered sequence of n elements.

## 🎨 Design
Expand Down