Next Permutation - Well-explained O(n) easy to understand in C++
Problem Statement:
A permutation of an array of integers is an arrangement of its members into a sequence or linear order.
- For example, for
arr = [1,2,3]
, the following are all the permutations ofarr
:[1,2,3], [1,3,2], [2, 1, 3], [2, 3, 1], [3,1,2], [3,2,1]
.
The next permutation of an array of integers is the next lexicographically greater permutation of its integer. More formally, if all the permutations of the array are sorted in one container according to their lexicographical order, then the next permutation of that array is the permutation that follows it in the sorted container. If such arrangement is not possible, the array must be rearranged as the lowest possible order (i.e., sorted in ascending order).
- For example, the next permutation of
arr = [1,2,3]
is[1,3,2]
. - Similarly, the next permutation of
arr = [2,3,1]
is[3,1,2]
. - While the next permutation of
arr = [3,2,1]
is[1,2,3]
because[3,2,1]
does not have a lexicographical larger rearrangement.
Given an array of integers nums
, find the next permutation of nums
.
The replacement must be in place and use only constant extra memory.
Example 1:
Input: nums = [1,2,3] Output: [1,3,2]
Example 2:
Input: nums = [3,2,1] Output: [1,2,3]
Example 3:
Input: nums = [1,1,5] Output: [1,5,1]
Constraints:
1 <= nums.length <= 100
0 <= nums[i] <= 100
Solution:
Steps:
- Traverse through the array right to left, starting from
n-2
position (n
is length of array) - If you find
a[i+1]>a[i]
stop. - If you reached
i=-1
means array is sorted in decreasing order. Reverse the whole array and return. Else follow next steps - Now remember that to the right of
i
we have decreasing sorted array (fromi+1
ton-1
) - Reverse the array from
i+1
ton-1
to make it increasing sorted. - Find the smallest number greater than
a[i]
in this portion and swap witha[i]
. Remember there will always be at least one number greater thana[i]
here because when you had stopped traversing, you hada[i+1]>a[i]
, so at least thata[i+1]
will still be there, but there still might be another more suitable candidate. - You are done!
For example
A = [9,8,4,8,6,4,3]
You will stop at i=2
because for the first time from right to left, A[i+1]>A[i]
Now we see that we have a decreasing sorted array to the right of i=2
: [8,6,4,3]
. Reverse this part, so A now becomes:
A = [9,8,4,3,4,6,8]
Now traverse from i=3
to end of array to find smallest number greater than A[2]=4
and swap with A[2]
. So we will have:
A=[9,8,6,3,4,4,8]
This is indeed the correct answer.
Coding it up:
class Solution {
public:
void swap(int &a, int&b)
{
int t=a;
a=b;
b=t;
}
void nextPermutation(vector<int>& nums) {
if (nums.size()==1) return;
int n=nums.size(), i;
for (i=n-2; i>=0; i--)
if (nums[i+1]>nums[i]) break;
if (i==-1) {reverse(nums.begin(),nums.end()); return;}
sort(nums.begin()+i+1, nums.end());
int j;
for (j=i+1; j<n; j++) if (nums[j]>nums[i]) break;
swap(nums[i],nums[j]);
return;
}
};