@@ -9,13 +9,13 @@ Sort Algorithms implementation in javascript with ability to use a comparison ca
99## Implemented Algorithms
1010
1111<table >
12- <tr ><td >Bubble Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /bubbleSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Bubble_sort " >Wikipedia</a ></td ></tr >
13- <tr ><td >Selection Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /selectionSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Selection_sort " >Wikipedia</a ></td ></tr >
14- <tr ><td >Insertion Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /insertionSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Insertion_sort " >Wikipedia</a ></td ></tr >
15- <tr ><td >Radix Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /radixSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Radix_sort " >Wikipedia</a ></td ></tr >
16- <tr ><td >Heap Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /heapSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Heapsort " >Wikipedia</a ></td ></tr >
17- <tr ><td >Quick Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /quickSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Quicksort " >Wikipedia</a ></td ></tr >
18- <tr ><td >Merge Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/development/src /mergeSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Merge_sort " >Wikipedia</a ></td ></tr >
12+ <tr ><td >Bubble Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /bubbleSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Bubble_sort " >Wikipedia</a ></td ></tr >
13+ <tr ><td >Selection Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /selectionSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Selection_sort " >Wikipedia</a ></td ></tr >
14+ <tr ><td >Insertion Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /insertionSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Insertion_sort " >Wikipedia</a ></td ></tr >
15+ <tr ><td >Radix Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /radixSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Radix_sort " >Wikipedia</a ></td ></tr >
16+ <tr ><td >Heap Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /heapSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Heapsort " >Wikipedia</a ></td ></tr >
17+ <tr ><td >Quick Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /quickSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Quicksort " >Wikipedia</a ></td ></tr >
18+ <tr ><td >Merge Sort</td ><td ><a href =" https://github.com/eyas-ranjous/sort-algorithms-js/blob/master/lib /mergeSort.js " >Source Code</a ></td ><td ><a href =" https://en.wikipedia.org/wiki/Merge_sort " >Wikipedia</a ></td ></tr >
1919</table >
2020
2121## Table of Contents
0 commit comments