Skip to content

Commit bbe578f

Browse files
committed
Sorting README file links updated
1 parent 5fef824 commit bbe578f

File tree

5 files changed

+6
-11
lines changed

5 files changed

+6
-11
lines changed

Sorting/Bubble Sort/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,5 @@ Starting from the beginning of the list, compare every adjacent pair, swap their
2121
- Best Case - O(n)
2222

2323
### More on this topic
24-
- http://en.wikipedia.org/wiki/Bubble_sort
25-
- http://quiz.geeksforgeeks.org/bubble-sort/
26-
- https://www.topcoder.com/community/data-science/data-science-tutorials/sorting/
24+
- [Bubble Sort](http://en.wikipedia.org/wiki/Bubble_sort)
25+
- [Bubble Sort](http://quiz.geeksforgeeks.org/bubble-sort/)

Sorting/Insertion Sort/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@
1616
- Best Case - O(n)
1717

1818
### More on this topic
19-
- https://en.wikipedia.org/wiki/Insertion_sort
20-
- http://quiz.geeksforgeeks.org/insertion-sort/
21-
- https://www.topcoder.com/community/data-science/data-science-tutorials/sorting/
19+
- [Insertion Sort - WikiPedia](https://en.wikipedia.org/wiki/Insertion_sort)
20+
- [Insertion Sort - geeksforgeeks](http://quiz.geeksforgeeks.org/insertion-sort/)

Sorting/Merge Sort/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ While comparing two sub-lists for merging, the first element of both lists is ta
2626
- [Merge Sort - Wikipedia](https://en.wikipedia.org/wiki/Merge_sort)
2727
- [Merge Sort - KhanAcademy Tutorial](https://www.khanacademy.org/computing/computer-science/algorithms/merge-sort/a/overview-of-merge-sort)
2828
- [Merge Sort - HackerEarch Tutorial](https://www.hackerearth.com/practice/algorithms/sorting/merge-sort/tutorial/)
29-
- [Sorting - TopCoder Tutorial](https://www.topcoder.com/community/data-science/data-science-tutorials/sorting/)

Sorting/Quick Sort/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,4 @@ The principle of the quicksort algorithm is this:
3232
- [Quick Sort - KhanAcademy Tutorial](https://www.khanacademy.org/computing/computer-science/algorithms/quick-sort/a/overview-of-quicksort)
3333
- [Understanding Quicksort (with interactive demo)](http://me.dt.in.th/page/Quicksort/)
3434
- [Quick Sort - HackerEarch Tutorial](https://www.hackerearth.com/practice/algorithms/sorting/quick-sort/tutorial/)
35-
- [Sorting - TopCoder Tutorial](https://www.topcoder.com/community/data-science/data-science-tutorials/sorting/)
3635
- [Computer science in JavaScript: Quicksort](https://www.nczonline.net/blog/2012/11/27/computer-science-in-javascript-quicksort/)

Sorting/Selection Sort/README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@ If there are n elements to be sorted then, the process mentioned above should be
2020
- Best Case - O(n<sup>2</sup>)
2121

2222
### More on this topic
23-
- https://en.wikipedia.org/wiki/Selection_sort
24-
- http://quiz.geeksforgeeks.org/selection-sort/
25-
- https://www.topcoder.com/community/data-science/data-science-tutorials/sorting/
23+
- [Selection Sort - WikiPedia](https://en.wikipedia.org/wiki/Selection_sort)
24+
- [Selection Sort - geeksforgeeks](http://quiz.geeksforgeeks.org/selection-sort/)

0 commit comments

Comments
 (0)