File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ This repository contains implementation of some of the fundamental data structur
38
38
* [ Recursive] ( src/algorithms/sorting/mergeSort/recursive )
39
39
* [ Bottom-up iterative] ( src/algorithms/sorting/mergeSort/iterative )
40
40
- 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 )
42
44
- Radix Sort
43
45
44
46
@@ -54,7 +56,7 @@ This repository contains implementation of some of the fundamental data structur
54
56
* [ Insertion] ( src/algorithms/sorting/insertionSort )
55
57
* [ Selection] ( src/algorithms/sorting/selectionSort )
56
58
* [ Merge] ( src/algorithms/sorting/mergeSort )
57
- * Quick
59
+ * [ Quick] ( src/algorithms/sorting/quickSort )
58
60
4 . Trees
59
61
* Binary search tree
60
62
* AVL-tree
You can’t perform that action at this time.
0 commit comments