From bf2f1c0d7e915763bf7546658716dea8672ad56c Mon Sep 17 00:00:00 2001 From: jinyoungHan <33437163+jinyoungHan@users.noreply.github.com> Date: Thu, 18 Oct 2018 05:02:52 +0900 Subject: [PATCH 1/5] update Merge Sort md update Invalid link --- Sorting Algorithms/Merge Sort.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sorting Algorithms/Merge Sort.md b/Sorting Algorithms/Merge Sort.md index 2d17fe51..aa2e0bb7 100644 --- a/Sorting Algorithms/Merge Sort.md +++ b/Sorting Algorithms/Merge Sort.md @@ -33,11 +33,11 @@ Now merge both these halves to get the sorted array [0, 1, 2, 3, 5, 9] #### Code Implementation Links -- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/MergeSort.java) +- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/MergeSort.java) - [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Merge%20Sort.cpp) - [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py) - [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/merge_sort.cs) -- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c.c) +- [C](https://github.com/TheAlgorithms/C/blob/master/sorting/mergesort.c) #### Video Explanation From c38aba9d708eec38b157655d7a226c5fc4474870 Mon Sep 17 00:00:00 2001 From: jinyoungHan <33437163+jinyoungHan@users.noreply.github.com> Date: Thu, 18 Oct 2018 05:06:43 +0900 Subject: [PATCH 2/5] Update Bubble Sort.md update Invalid link --- Sorting Algorithms/Bubble Sort.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Sorting Algorithms/Bubble Sort.md b/Sorting Algorithms/Bubble Sort.md index 508979f2..cace8e4f 100644 --- a/Sorting Algorithms/Bubble Sort.md +++ b/Sorting Algorithms/Bubble Sort.md @@ -84,14 +84,14 @@ Indexes: 0 1 2 3 #### Code Implementation Links -- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/BubbleSort.java) +- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/BubbleSort.java) - [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Bubble%20Sort.cpp) - [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py) - [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/bubble_sort.cs) -- [Go](https://github.com/TheAlgorithms/Go/blob/master/sorts/BubbleSort.go) -- [Ruby](https://github.com/TheAlgorithms/Ruby/blob/master/BubbleSort.rb) -- [C](https://github.com/TheAlgorithms/C/blob/master/Sorts/BubbleSort.c) -- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/Bubble%20Sort.scala) +- [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) +- [Scala](https://github.com/TheAlgorithms/Scala/blob/master/src/main/scala/Sort/BubbleSort.scala) - [Javascript](https://github.com/TheAlgorithms/Javascript/blob/master/Sorts/bubblesort.js) @@ -101,4 +101,4 @@ Indexes: 0 1 2 3 #### Others -Bubble sort is also known as Sinking sort. \ No newline at end of file +Bubble sort is also known as Sinking sort. From a9a3694d6c8418e2953ef86243eeb42285a661b8 Mon Sep 17 00:00:00 2001 From: jinyoungHan <33437163+jinyoungHan@users.noreply.github.com> Date: Thu, 18 Oct 2018 05:06:52 +0900 Subject: [PATCH 3/5] Update Bubble Sort.md update Invalid link From faec28649956f07d84676e08de54337d4a156d09 Mon Sep 17 00:00:00 2001 From: Ashwek Swamy <39827514+ashwek@users.noreply.github.com> Date: Wed, 13 Feb 2019 19:42:18 +0530 Subject: [PATCH 4/5] Update link --- Sorting Algorithms/Bubble Sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorting Algorithms/Bubble Sort.md b/Sorting Algorithms/Bubble Sort.md index cace8e4f..f58e2079 100644 --- a/Sorting Algorithms/Bubble Sort.md +++ b/Sorting Algorithms/Bubble Sort.md @@ -84,7 +84,7 @@ Indexes: 0 1 2 3 #### Code Implementation Links -- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/BubbleSort.java) +- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/BubbleSort.java) - [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Bubble%20Sort.cpp) - [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/bubble_sort.py) - [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/bubble_sort.cs) From cd6aa3d9f18c14afcaa119653926978ae275f424 Mon Sep 17 00:00:00 2001 From: Ashwek Swamy <39827514+ashwek@users.noreply.github.com> Date: Wed, 13 Feb 2019 19:47:40 +0530 Subject: [PATCH 5/5] Update Merge Sort.md --- Sorting Algorithms/Merge Sort.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorting Algorithms/Merge Sort.md b/Sorting Algorithms/Merge Sort.md index aa2e0bb7..c5c7edd6 100644 --- a/Sorting Algorithms/Merge Sort.md +++ b/Sorting Algorithms/Merge Sort.md @@ -33,7 +33,7 @@ Now merge both these halves to get the sorted array [0, 1, 2, 3, 5, 9] #### Code Implementation Links -- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/src/sort/MergeSort.java) +- [Java](https://github.com/TheAlgorithms/Java/blob/master/Sorts/MergeSort.java) - [C++](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/Sorting/Merge%20Sort.cpp) - [Python](https://github.com/TheAlgorithms/Python/blob/master/sorts/merge_sort.py) - [C-Sharp](https://github.com/TheAlgorithms/C-Sharp/blob/master/sorts/merge_sort.cs)