Implement 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
Analysis
At first, I tried several times but I always got a wrong answer. After searching on google, I found a very clean solution from isherlei.blogspot.com.
1. From right to left, find the first digit (PartitionNumber) which violate the increase trend.
2. From right to left, find the first digit which larger than PartitionNumber, call it ChangeNumber.
3. Swap the PartitionNumber and ChangeNumber.
4. Reverse all the digit on the right of partition index.
You can visit http://fisherlei.blogspot.com/2012/12/leetcode-next-permutation.html for details.
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
public class Solution { public void nextPermutation(int[] num) { int i = 0; int j = 0; //From right to left, find the first one that is not in ascending order. for (i = num.length - 2; i >= 0; i--) { if (num[i] >= num[i + 1]) continue; //From right to left, find the first one that is larger than num[i] for (j = num.length - 1; j > i; j--) { if (num[j] > num[i]) break; } break; } //If we find i, swap the number on position i and j if (i >= 0) { int tmp = num[i]; num[i] = num[j]; num[j] = tmp; } //Reverse the numbers which are on the right of i int start = i + 1; int end = num.length - 1; while (start < end) { int tmp = num[start]; num[start] = num[end]; num[end] = tmp; start++; end--; } } } |
Complexity
We only go through the array at most 3 times. So the complexity is $O(n)$.