Complexity: O(n)
2 pointers: i and j
The pointer i is maintained while another pointer j is scanning through the array, from its starting all the way to the end (up to the pivot element). The scan ensures that any element e₀ that is present from the starting point of the array to the (i-1)ᵗʰ index is lesser than the pivot element in terms of value and the elements present at any index ranging from i to j are equal to or bigger than the pivot element in terms of value.
while (j != ARRAY_SIZE) {
if (array[j] > pivot) {
// do until finding element, which is <= pivot:
i++;
if (foundSuchElement) {
swap(array[j], array[i]);
} else {
swap(array[j], pivot);
exitPartition();
}
} else {
// all ok, pivot >= array[j] is true, just increment j index and check next
}
j++;
}
https://iq.opengenus.org/lomuto-partition-scheme/
https://iq.opengenus.org/lomuto-partition-scheme/
https://iq.opengenus.org/lomuto-partition-scheme/
Once again, since pivot >= 2, we move ahead for the next comparison.
Here pivot >= 7 as well, so we keep on moving until we reach 9 element (5th index) of the array. Here, 9 >= pivot, and so we place one of our pointers at this index (5) until we reach another index that contains a value that is ≤ pivot:
https://iq.opengenus.org/lomuto-partition-scheme/
https://iq.opengenus.org/lomuto-partition-scheme/
A swapping operation is performed.
https://iq.opengenus.org/lomuto-partition-scheme/