File tree Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Expand file tree Collapse file tree 6 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ A simple Binary Search implementation may return -1 as 9 is not present in the a
44
44
- [ C++] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/binary_search.cpp )
45
45
- [ Python] ( https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py )
46
46
- [ C-Sharp] ( https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs )
47
- - [ C] ( https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search .c )
47
+ - [ C] ( https://github.com/TheAlgorithms/C/blob/master/searching/binary_search .c )
48
48
49
49
#### Video Explanation
50
50
Original file line number Diff line number Diff line change @@ -57,4 +57,5 @@ Let's take a look at this comparison with a less theoretical example. Imagine we
57
57
#### Code Implementation Links
58
58
59
59
- [ C++] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/exponential_search.cpp )
60
+ - [ C] ( https://github.com/TheAlgorithms/C/blob/master/searching/exponential_search.c )
60
61
- [ JavaScript] ( https://github.com/TheAlgorithms/Javascript/blob/master/Search/ExponentialSearch.js )
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ Linear Search should return -1 as 6 is not present in the array
38
38
- [ Java] ( https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/LinearSearch.java )
39
39
- [ C++] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/linear_search.cpp )
40
40
- [ Python] ( https://github.com/TheAlgorithms/Python/blob/master/searches/linear_search.py )
41
+ - [ C] ( https://github.com/TheAlgorithms/C/blob/master/searching/linear_search.c )
41
42
42
43
#### Video Explanation
43
44
Original file line number Diff line number Diff line change 71
71
- [ Java] ( https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/QuickSort.java )
72
72
- [ C++] ( https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/quick_sort.cpp )
73
73
- [ Python] ( https://github.com/TheAlgorithms/Python/blob/master/sorts/quick_sort.py )
74
+ - [ C] ( https://github.com/TheAlgorithms/C/blob/master/sorting/quick_sort.c )
74
75
- [ Ruby] ( https://github.com/TheAlgorithms/Ruby/blob/master/sorting/quicksort.rb )
75
76
76
77
#### Video Explanation
Original file line number Diff line number Diff line change @@ -57,7 +57,8 @@ The array is now sorted.
57
57
- [ Python] ( https://github.com/TheAlgorithms/Python/blob/master/sorts/selection_sort.py )
58
58
- [ Go] ( https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go )
59
59
- [ Ruby] ( https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb )
60
- - [ C] ( https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c )
60
+ - [ C iterative] ( https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort.c )
61
+ - [ C recursive] ( https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort_recursive.c )
61
62
- [ Scala] ( https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala )
62
63
- [ Javascript] ( https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js )
63
64
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Initial Gap: 4
62
62
- [ C-Sharp] ( https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs )
63
63
- [ Go] ( https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go )
64
64
- [ Ruby] ( https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb )
65
- - [ C] ( https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort .c )
65
+ - [ C] ( https://github.com/TheAlgorithms/C/blob/master/sorting/shell_sort .c )
66
66
- [ Javascript] ( https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js )
67
67
68
68
#### Video Explanation
You can’t perform that action at this time.
0 commit comments