Skip to content

Commit ea2fac1

Browse files
committed
Add links in README
1 parent 9b5bb3d commit ea2fac1

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,12 @@ This repository contains implementation of some of the fundamental data structur
3131
* [Generalized case](src/algorithms/sorting/cyclicSort/generalised) of O(n^2) time complexity
3232
- [Knuth-Morris-Pratt](src/algorithms/patternFinding/) aka KMP algorithm
3333
- [Matrix Operations](others/matrix_operations/)
34+
- [Bubble Sort](src/algorithms/sorting/bubbleSort)
35+
- [Insertion Sort](src/algorithms/sorting/insertionSort)
36+
- [Selection Sort](src/algorithms/sorting/selectionSort)
3437
- Merge Sort
35-
* Recursive
36-
* Bottom-up iterative
38+
* [Recursive](src/algorithms/sorting/mergeSort/recursive)
39+
* [Bottom-up iterative](src/algorithms/sorting/mergeSort/iterative)
3740
- Quick Sort
3841
* 3-way Partitioning
3942
- Radix Sort
@@ -47,10 +50,10 @@ This repository contains implementation of some of the fundamental data structur
4750
2. Binary Search
4851
* Peak Finding
4952
3. Sorting
50-
* Bubble
51-
* Insertion
52-
* Selection
53-
* Merge
53+
* [Bubble](src/algorithms/sorting/bubbleSort)
54+
* [Insertion](src/algorithms/sorting/insertionSort)
55+
* [Selection](src/algorithms/sorting/selectionSort)
56+
* [Merge](src/algorithms/sorting/mergeSort)
5457
* Quick
5558
4. Trees
5659
* Binary search tree

0 commit comments

Comments
 (0)