Complexity: O(n)

Algorithm

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/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/

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/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/

https://iq.opengenus.org/lomuto-partition-scheme/