Algorithm | Worst-Case(O) | Average-Case(θ) | Best-Case(Ω) |
---|---|---|---|
Linear-Search | n | n/2 | 1 |
Binary-Search | log n | log n | 1 |
Bubble-Sort | n2 | n2 | n |
Selection-Sort | n2 | n2 | n2 |
Insertion-Sort | n2 | n2 | n |
-
Notifications
You must be signed in to change notification settings - Fork 3
venkateshpensalwar/DSA
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
This repository contains useful algorithms and data structures implemented in the simplest way as much as we can.