Skip to content

Commit 347c3ba

Browse files
authored
Update readme.md
1 parent 801c2fa commit 347c3ba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

readme.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ The algorithm is the most important part of any program.
1111
- Bubble sort ___(Time complexity = О(n<sup>2</sup>))___
1212
- Insertion Sort ___(Time complexity = О(n<sup>2</sup>))___
1313
- Selection Sort ___(Time complexity = О(n<sup>2</sup>))___
14-
- Quick sort ___(Time complexity = О(n*log(n))___
15-
- Merge sort ___(Time complexity = О(n*log(n))___
14+
- Quick sort ___(Time complexity = О(log<sub>2</sub>n)___
15+
- Merge sort ___(Time complexity = О(log<sub>2</sub>n)___
1616

1717
- Binary Search
18-
- Binary search on Sorted array
19-
- Binary search in infinite sorted array (constant speed)
20-
- Binary search in infinite sorted array (exponential speed)
21-
- Binary search on rotated sorted Array
18+
- Binary search on Sorted array ___(Time complexity = О(log<sub>2</sub>n)___
19+
- Binary search in infinite sorted array (constant speed) ___(Time complexity = О(log<sub>2</sub>n)___
20+
- Binary search in infinite sorted array (exponential speed) ___(Time complexity = О(log<sub>2</sub>n)___
21+
- Binary search on rotated sorted Array ___(Time complexity = О(log<sub>2</sub>n)___
2222

2323
- Backtraking
2424
- Sudoku solver ___(Time complexity = О(9<sup>n</sup>))___

0 commit comments

Comments
 (0)