We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0721d60 commit 2a96aafCopy full SHA for 2a96aaf
en/Sorting Algorithms/Bubble Sort.md
@@ -85,7 +85,7 @@ Since there are no swaps in above steps, it means the array is sorted and we can
85
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/bubble_sort.cpp)
86
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)
87
- [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)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/bubblesort.go)
89
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bubble_sort.rb)
90
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/bubble_sort.c)
91
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/BubbleSort.scala)
en/Sorting Algorithms/Heap Sort.md
@@ -60,7 +60,7 @@ in top down manner.
60
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/HeapSort.java)
61
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/heap_sort.cpp)
62
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/heap_sort.py)
63
-- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/heapsort.go)
64
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/heap_sort.rb)
65
- [C-sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/HeapSorter.cs)
66
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/heap_sort.c)
en/Sorting Algorithms/Selection Sort.md
@@ -55,7 +55,7 @@ The array is now sorted.
55
- [C++ Iterative](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_iterative.cpp)
56
- [C++ Recursive](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/selection_sort_recursive.cpp)
57
- [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)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/selectionsort.go)
59
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
- [C iterative](https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort.c)
- [C recursive](https://github.com/TheAlgorithms/C/blob/master/sorting/selection_sort_recursive.c)
en/Sorting Algorithms/Shell Sort.md
@@ -60,7 +60,7 @@ Initial Gap: 4
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/sorting/shell_sort.cpp)
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/shell_sort.py)
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Sorters/Comparison/ShellSorter.cs)
-- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.go)
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/shell_sort.rb)
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shell_sort.c)
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
es/Algoritmos de Ordenamiento/Ordenamiento Burbuja.md
@@ -85,7 +85,7 @@ Como no hay intercambios en los pasos de arriba, el arreglo ya se ha ordenado y
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Bubble%20Sort.cpp)
-- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubble_sort.go)
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/bubble_sort.rb)
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/BubbleSort.c)
es/Algoritmos de Ordenamiento/Ordenamiento Shell.md
@@ -61,7 +61,7 @@ Brecha inicial: 4
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Shell%20Sort.cpp)
-- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/shell_sort.go)
+- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.go)
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/shellSort.c)
67
es/Algoritmos de Ordenamiento/Ordenamiento de montón (heap sort).md
@@ -60,7 +60,7 @@ El procedimiento de amontonar se llama a sí mismo recursivamente para construir
-- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/heapsort.go)
+- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/heapsort.go)
es/Algoritmos de Ordenamiento/Ordenamiento de selección.md
@@ -54,7 +54,7 @@ La matriz ahora está ordenada.
54
- [Java](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/sorts/SelectionSort.java)
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Selection%20Sort.cpp)
-- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
+- [Ir](https://github.com/TheAlgorithms/Go/blob/master/sort/selectionsort.go)
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)
es/Algoritmos de búsqueda/Búsqueda binaria.md
@@ -48,7 +48,7 @@ Búsqueda binaria debe devolver -1 dado que 9 no está presente en la matriz
48
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Search/BinarySearch.js)
49
- [Haskell](https://github.com/TheAlgorithms/Haskell/blob/master/src/Misc/BinarySearch.hs)
50
- [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)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/search/binary.go)
52
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/binary_search.rs)
53
- [Dart](https://github.com/TheAlgorithms/Dart/blob/master/search/binary_Search.dart)
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Searches/binary_search.rb)
es/Algoritmos de búsqueda/Búsqueda lineal.md
@@ -41,7 +41,7 @@ La búsqueda lineal debe devolver -1 ya que 6 no está presente en la matriz
41
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Search/LinearSearch.js)
42
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/Algorithms/Search/LinearSearcher.cs)
43
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/linear_search.c)
44
-- [Go](https://github.com/TheAlgorithms/Go/blob/master/searches/linearsearch.go)
+- [Go](https://github.com/TheAlgorithms/Go/blob/master/search/linear.go)
45
- [Rust](https://github.com/TheAlgorithms/Rust/blob/master/src/searching/linear_search.rs)
46
- [Dart](https://github.com/TheAlgorithms/Dart/blob/master/search/linear_Search.dart)
47
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Searches/linear_search.rb)
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments