mplement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such arrangement is not possible, it must rearrange it as the lowest possible order (ie, sorted in ascending order).
The replacement must be in-place, do not allocate extra memory.
Here are some examples. Inputs are in the left-hand column and its corresponding outputs are in the right-hand column.
1,2,3
→ 1,3,2
3,2,1
→ 1,2,3
1,1,5
→ 1,5,1
public class Solution {
public void nextPermutation(int[] num){
//[1,6,5,4,3,2] think of this situation you will understand
// Find the largest index k such that a[k] < a[k + 1]. If no such index exists, the permutation is the last permutation.
// Find the largest index l such that a[k] < a[l].
// Swap the value of a[k] with that of a[l].
// Reverse the sequence from a[k + 1] up to and including the final element a[n].
for(int i=num.length-1;i>=1;i--){
if(num[i]>num[i-1]){
//step 2
for(int j=num.length-1;j>=i-1;j--){
if(num[j]>num[i-1]){
//step3
swap(num,i-1,j);
//step 4
inverse(num,i);
return;
}
}
}
}
inverse(num,0);
}
public void inverse(int[] num, int i){
int j=num.length-1;
while(i<=j){
swap(num,i,j);
i++;
j--;
}
}
public void swap(int[] num, int i, int j){
int temp=num[i];
num[i]=num[j];
num[j]=temp;
}
}