8000 Merge pull request #12 from e-ht/master · nemanator/Algorithms-Explanation@a875105 · GitHub
[go: up one dir, main page]

Skip to content

Commit a875105

Browse files
authored
Merge pull request TheAlgorithms#12 from e-ht/master
Updated missing links for existing algorithms.
2 parents 840ac96 + a1d59ca commit a875105

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

Data Structures/Linked Lists/Singly Linked List.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class LinkedList {
3939

4040
## Code Implementation Links
4141

42-
- [Java](https://github.com/TheAlgorithms/Java/blob/master/data_structures/Lists/SinglyLinkedList.java)
42+
- [Java](https://github.com/TheAlgorithms/Java/blob/master/DataStructures/Lists/SinglyLinkedList.java)
4343
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Linked%20List.cpp)
4444
- [Python](https://github.com/TheAlgorithms/Python/blob/master/data_structures/LinkedList/singly_LinkedList.py)
4545

Search Algorithms/Binary Search.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Binary Search should return -1 as 9 is not present in the array
4444
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Binary%20Search.cpp)
4545
- [Python](https://github.com/TheAlgorithms/Python/blob/master/searches/binary_search.py)
4646
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/searches/binary_search.cs)
47-
- [C](https://github.com/TheAlgorithms/C/blob/master/Searches/BinarySearch.c)
47+
- [C](https://github.com/TheAlgorithms/C/blob/master/searching/Binary_Search.c)
4848

4949
#### Video Explanation
5050

Sorting Algorithms/Bubble Sort.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ Indexes: 0 1 2 3
8888
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Bubble%20Sort.cpp)
8989
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py)
9090
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/bubble_sort.cs)
91-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/BubbleSort.go)
92-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/BubbleSort.rb)
91+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/bubble_sort.go)
92+
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/bubble_sort.rb)
9393
- [C](https://github.com/TheAlgorithms/C/blob/master/Sorts/BubbleSort.c)
94-
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/Bubble%20Sort.scala)
94+
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/BubbleSort.scala)
9595
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bubblesort.js)
9696

9797

@@ -101,4 +101,4 @@ Indexes: 0 1 2 3
101101

102102
#### Others
103103

104-
Bubble sort is also known as Sinking sort.
104+
Bubble sort is also known as Sinking sort.

Sorting Algorithms/Insertion Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ and elements from 11 to 13 will move one position ahead of their current positio
5555
- [C](https://github.com/TheAlgorithms/C/blob/master/Sorts/InsertionSort.c)
5656
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Insertion%20Sort.cpp)
5757
- [C#](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/insertion_sort.cs)
58-
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/sorts/InsertionSort.scala)
58+
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/InsertionSort.scala)
5959
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/insertion_sort.py)
6060

6161
#### Video Explanation

Sorting Algorithms/Merge Sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Now merge both these halves to get the sorted array [0, 1, 2, 3, 5, 9]
3737
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Merge%20Sort.cpp)
3838
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py)
3939
- [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/merge_sort.cs)
40-
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c.c)
40+
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c)
4141

4242
#### Video Explanation
4343

Sorting Algorithms/Selection Sort.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ Indexes: 0 1 2 3
5656
- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/SelectionSort.java)
5757
- [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Selection%20Sort.cpp)
5858
- [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/selection_sort.py)
59-
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_Sort.go)
60-
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Selection_Sort.rb)
59+
- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/selection_sort.go)
60+
- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/Sorting/selection_sort.rb)
6161
- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/SelectionSort.c)
62-
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/Selection%20Sort.scala)
62+
- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/SelectionSort.scala)
6363
- [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/selectionSort.js)
6464

6565

0 commit comments

Comments
 (0)
0