Skip to content

Commit b1c8f39

Browse files
authored
fix: broken links for C-Sharp implementations (#171)
1 parent 0b80cb6 commit b1c8f39

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

Diff for: en/Search Algorithms/Binary Search.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ A simple Binary Search implementation may return -1 as 9 is not present in the a
4343
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/BinarySearch.java)
4444
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/search/binary_search.cpp)
4545
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
46-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
46+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs)
4747
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
4848

4949
#### Video Explanation

Diff for: en/Sorting Algorithms/Shell Sort.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Initial Gap: 4
5959
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/ShellSort.java)
6060
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort.cpp)
6161
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/shell_sort.py)
62-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/shell_sort.cs)
62+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
6363
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
6464
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
6565
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)

Diff for: es/Algoritmos de Ordenamiento/Ordenamiento Burbuja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Como no hay intercambios en los pasos de arriba, el arreglo ya se ha ordenado y
8484
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/BubbleSort.java)
8585
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Bubble%20Sort.cpp)
8686
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)
87-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/bubble_sort.cs)
87+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/BubbleSorter.cs)
8888
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubble_sort.go)
8989
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/bubble_sort.rb)
9090
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/BubbleSort.c)

Diff for: es/Algoritmos de Ordenamiento/Ordenamiento Shell.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Brecha inicial: 4
6060
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/ShellSort.java)
6161
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Shell%20Sort.cpp)
6262
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/shell_sort.py)
63-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/shell_sort.cs)
63+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
6464
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
6565
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
6666
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)

Diff for: es/Algoritmos de búsqueda/Búsqueda binaria.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Búsqueda binaria debe devolver -1 dado que 9 no está presente en la matriz
4343
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/BinarySearch.java)
4444
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Binary%20Search.cpp)
4545
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
46-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
46+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs)
4747
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
4848
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Search/BinarySearch.js)
4949
- [Haskell](https://github.com/TheAlgorithms/Haskell/blob/master/src/Misc/BinarySearch.hs)

Diff for: ko/정렬 알고리즘/셸 정렬.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Initial Gap: 4
5757
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/ShellSort.java)
5858
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Shell%20Sort.cpp)
5959
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/shell_sort.py)
60-
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/shell_sort.cs)
60+
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
6161
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
6262
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
6363
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)

Diff for: ko/탐색 알고리즘/이진 탐색.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ arr = [7]
5757
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Searches/BinarySearch.java)
5858
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Binary%20Search.cpp)
5959
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
60-
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
60+
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs)
6161
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
6262

6363
## 영상 URL

Diff for: ko/탐색/이분탐색.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
- [자바](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/BinarySearch.java)
4444
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Binary%20Search.cpp)
4545
- [파이썬](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
46-
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
46+
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs)
4747
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
4848

4949
#### 영상 URL

Diff for: pt-br/Algoritmos de Busca/Busca Binaria.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ alvo = 9
4545
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/searches/BinarySearch.java)
4646
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Search/Binary%20Search.cpp)
4747
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
48-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
48+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/BinarySearcher.cs)
4949
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
5050

5151
#### Explicação em vídeo

Diff for: pt-br/Algoritmos de Ordenação/Shell Sort.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Lacuna inicial: 4
5757
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/ShellSort.java)
5858
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Shell%20Sort.cpp)
5959
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/shell_sort.py)
60-
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/shell_sort.cs)
60+
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
6161
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
6262
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
6363
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)

0 commit comments

Comments
 (0)