Skip to content

Commit e6f81b0

Browse files
committed
Added links to README
1 parent 789d9a1 commit e6f81b0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ This repository contains implementation of some of the fundamental data structur
3838
* [Recursive](src/algorithms/sorting/mergeSort/recursive)
3939
* [Bottom-up iterative](src/algorithms/sorting/mergeSort/iterative)
4040
- Quick Sort
41-
* 3-way Partitioning
41+
* [Lomuto's](src/algorithms/sorting/quickSort/lomuto)
42+
* [Paranoid](src/algorithms/sorting/quickSort/paranoid)
43+
* [3-way Partitioning](src/algorithms/sorting/quickSort/threeWayPartitioning)
4244
- Radix Sort
4345

4446

@@ -54,7 +56,7 @@ This repository contains implementation of some of the fundamental data structur
5456
* [Insertion](src/algorithms/sorting/insertionSort)
5557
* [Selection](src/algorithms/sorting/selectionSort)
5658
* [Merge](src/algorithms/sorting/mergeSort)
57-
* Quick
59+
* [Quick](src/algorithms/sorting/quickSort)
5860
4. Trees
5961
* Binary search tree
6062
* AVL-tree

0 commit comments

Comments
 (0)