Next Permutation
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
SOLUTION 1:
1. From the tail to find the first digital which drop
example: 12 4321
首先我们找到从尾部到头部第一个下降的digit. 在例子中是:2
2. 把从右到左第一个比dropindex大的元素换过来。
3. 把dropindex右边的的序列反序
4. 如果1步找不到这个index ,则不需要执行第二步。
1 public class Solution { 2 public void nextPermutation(int[] num) { 3 if (num == null) { 4 return; 5 } 6 7 int len = num.length; 8 9 // Find the index which drop. 10 int dropIndex = -1; 11 for (int i = len - 1; i >= 0; i--) { 12 if (i != len - 1 && num[i] < num[i + 1]) { 13 dropIndex = i; 14 break; 15 } 16 } 17 18 // replace the drop index. 19 if (dropIndex != -1) { 20 for (int i = len - 1; i >= 0; i--) { 21 if (num[i] > num[dropIndex]) { 22 swap(num, dropIndex, i); 23 break; 24 } 25 } 26 } 27 28 // reverse the link. 29 int l = dropIndex + 1; 30 int r = len - 1; 31 while (l < r) { 32 swap(num, l, r); 33 l++; 34 r--; 35 } 36 } 37 38 public void swap(int[] num, int l, int r) { 39 int tmp = num[l]; 40 num[l] = num[r]; 41 num[r] = tmp; 42 } 43 44 }
SOLUTION 2:
https://github.com/yuzhangcmu/LeetCode_algorithm/blob/master/permutation/NextPermutation.java
时间: 2024-10-13 01:40:15