Partition Array

Question 1 (LI.31arrow-up-right)

Given an integer array nums and a pivot, partition the array.

Code

public int partitionArray(int[] nums, int pivot) {
    int i = 0, j = nums.length - 1;
    while (i <= j) {
        // swap after cannot move anymore
        while (i <= j && nums[i] < pivot) {
            i++;
        }
        while (i <= j && nums[j] >= pivot) {
            j--;
        }
        // swap to keep the relative order
        if (i <= j) {
            swap(nums, i, j);
            i++;
            j--;                
        }
    }
    return i;
}

Partition the array into three parts, highBar.

Example

Code

Last updated