We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e41e13 commit 9972919Copy full SHA for 9972919
src/algorithms/sorting/quickSort/lomuto/QuickSort.java
@@ -16,8 +16,7 @@
16
* Implementation Invariant:
17
* The pivot is in the correct position, with elements to its left being <= it, and elements to its right being > it.
18
*
19
- * We are implementing Lomuto's partition scheme here due to ease of implementation and alignment with CS2040S lecture
20
- * slides. This is opposed to Hoare's partition scheme, see more at
+ * We are implementing Lomuto's partition scheme here. This is opposed to Hoare's partition scheme, see more at
21
* https://www.geeksforgeeks.org/hoares-vs-lomuto-partition-scheme-quicksort/.
22
23
* Complexity Analysis:
0 commit comments