Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2a96aaf

Browse files
pea-sysPanquesito7
andauthored
fix: broken links for Go implementations (#177)
Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent 0721d60 commit 2a96aaf

File tree

18 files changed

+18
-18
lines changed

18 files changed

+18
-18
lines changed

‎en/Sorting Algorithms/Bubble Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Since there are no swaps in above steps, it means the array is sorted and we can
8585
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort.cpp)
8686
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)
8787
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/BubbleSorter.cs)
88-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubblesort.go)
88+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/bubblesort.go)
8989
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bubble_sort.rb)
9090
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/bubble_sort.c)
9191
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/BubbleSort.scala)

‎en/Sorting Algorithms/Heap Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ in top down manner.
6060
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/HeapSort.java)
6161
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.cpp)
6262
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
63-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)
63+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/heapsort.go)
6464
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/heap_sort.rb)
6565
- [C-sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/HeapSorter.cs)
6666
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/heap_sort.c)

‎en/Sorting Algorithms/Selection Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The array is now sorted.
5555
- [C++ Iterative](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_iterative.cpp)
5656
- [C++ Recursive](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_recursive.cpp)
5757
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/selection_sort.py)
58-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
58+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/selectionsort.go)
5959
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
6060
- [C iterative](https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort.c)
6161
- [C recursive](https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort_recursive.c)

‎en/Sorting Algorithms/Shell Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Initial Gap: 4
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)
6262
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
63-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
63+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.go)
6464
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
6565
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shell_sort.c)
6666
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)

‎es/Algoritmos de Ordenamiento/Ordenamiento Burbuja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Como no hay intercambios en los pasos de arriba, el arreglo ya se ha ordenado y
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)
8787
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/BubbleSorter.cs)
88-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubble_sort.go)
88+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/bubblesort.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)
9191
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/BubbleSort.scala)

‎es/Algoritmos de Ordenamiento/Ordenamiento Shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Brecha inicial: 4
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)
6363
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
64-
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
64+
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.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)
6767
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)

‎es/Algoritmos de Ordenamiento/Ordenamiento de montón (heap sort).md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ El procedimiento de amontonar se llama a sí mismo recursivamente para construir
6060
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/HeapSort.java)
6161
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.cpp)
6262
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
63-
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)
63+
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/heapsort.go)
6464
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/heap_sort.rb)
6565
- [C-sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/HeapSorter.cs)
6666
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/heap_sort.c)

‎es/Algoritmos de Ordenamiento/Ordenamiento de selección.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ La matriz ahora está ordenada.
5454
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/SelectionSort.java)
5555
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Selection%20Sort.cpp)
5656
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/selection_sort.py)
57-
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
57+
- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/selectionsort.go)
5858
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
5959
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
6060
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)

‎es/Algoritmos de búsqueda/Búsqueda binaria.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Búsqueda binaria debe devolver -1 dado que 9 no está presente en la matriz
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)
5050
- [F-Sharp](https://github.com/TheAlgorithms/F-Sharp/blob/main/Algorithms/Search/BinarySearch.fs)
51-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/searches/binarysearch.go)
51+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/search/binary.go)
5252
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
5353
- [Dart](https://github.com/TheAlgorithms/Dart/blob/master/search/binary_Search.dart)
5454
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Searches/binary_search.rb)

‎es/Algoritmos de búsqueda/Búsqueda lineal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ La búsqueda lineal debe devolver -1 ya que 6 no está presente en la matriz
4141
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Search/LinearSearch.js)
4242
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/LinearSearcher.cs)
4343
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/linear_search.c)
44-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/searches/linearsearch.go)
44+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/search/linear.go)
4545
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/linear_search.rs)
4646
- [Dart](https://github.com/TheAlgorithms/Dart/blob/master/search/linear_Search.dart)
4747
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Searches/linear_search.rb)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /