8000 fix: broken links for JavaScript implementations (#176) · StenTech/Algorithms-Explanation@c111d47 · GitHub
[go: up one dir, main page]

Skip to content

Commit c111d47

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

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

en/Data Structures/Linked Lists/Circular Linked List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void insertHead(int data)
6666

6767
## Code Implementation Links
6868

69-
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked-List/SingleCircularLinkedList.js.js)
69+
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Data-Structures/Linked-List/SinglyCircularLinkedList.js)
7070
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.cpp)
7171
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/circular_linked_list.py)
7272

en/Sorting Algorithms/Bubble Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Since there are no swaps in above steps, it means the array is sorted and we can
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)
92-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js)
92+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/BubbleSort.js)
9393

9494
#### Video Explanation
9595

en/Sorting Algorithms/Selection Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ The array is now sorted.
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)
6262
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)
63-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js)
63+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/SelectionSort.js)
6464

6565
#### Video Explanation
6666

en/Sorting Algorithms/Shell Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Initial Gap: 4
6363
- [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)
66-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
66+
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
6767

6868
#### Video Explanation
6969

es/Algoritmos de Ordenamiento/Ordenamiento Burbuja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Como no hay intercambios en los pasos de arriba, el arreglo ya se ha ordenado y
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)
92-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bubblesort.js)
92+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/BubbleSort.js)
9393

9494
#### Explicación en video
9595

es/Algoritmos de Ordenamiento/Ordenamiento Shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Brecha inicial: 4
6464
- [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)
67-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
67+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/ShellSort.js)
6868

6969
#### Explicación de vídeo
7070

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ La matriz ahora está ordenada.
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)
61-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js)
61+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/SelectionSort.js)
6262

6363
#### Explicación de vídeo
6464

ko/자료구조/연결 리스트/원형 연결 리스트.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public void insertHead(int data)
6666

6767
## 구현
6868

69-
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Data-Structures/Linked-List/SingleCircularLinkedList.js.js)
69+
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Data-Structures/Linked-List/SinglyCircularLinkedList.js)
7070
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/cll/cll.cpp)
7171
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/linked_list/circular_linked_list.py)
7272

ko/정렬 알고리즘/선택 정렬.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The array is now sorted.
5656
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
5757
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
5858
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)
59-
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js)
59+
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/SelectionSort.js)
6060

6161
## 영상 URL
6262

ko/정렬 알고리즘/셸 정렬.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Initial Gap: 4
6161
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.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)
64-
- [JavaScript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
64+
- [JavaScript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/ShellSort.js)
6565

6666
## 영상 URL
6767

pt-br/Algoritmos de Ordenação/Bubble Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Como não há trocas nas etapas acima, isso significa que a matriz está classif
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)
92-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/BubbleSort.js)
92+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/BubbleSort.js)
9393

9494
#### Explicação em vídeo
9595

pt-br/Algoritmos de Ordenação/Selection Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ A matriz agora está classificada.
5656
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
5757
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
5858
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)
59-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js)
59+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/SelectionSort.js)
6060

6161
#### Explicação em vídeo
6262

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Lacuna inicial: 4
6161
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sort/shellsort.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)
64-
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/shellSort.js)
64+
- [Javascript](https://github.com/TheAlgorithms/JavaScript/blob/master/Sorts/ShellSort.js)
6565

6666
#### Explicação em vídeo
6767

0 commit comments

Comments
 (0)
0