您的位置:首页 > 其它

Next Permutation 求下一个排序@LeetCode

2013-11-21 13:35 274 查看
完全没有思路,参考了 http://www.cnblogs.com/etcow/archive/2012/10/02/2710083.html
分三步:  1. 从后往前找falling edge,下降沿。(下降之后的那个元素)  2. 从下降沿开始往后找出替换它的元素。(就是第一个比它小的前一个元素)  3. 反转后面所有元素,让他从小到大sorted(因为之前是从大到小sorted的)  例如 “547532“  1. “547532”, 4是下降沿。  2. “547532”, 5是要替换的元素, 替换后得到 “ 557432”     3. "557432",   7432反转,得到 “552347”。

package Level4;

/**
* 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
*
*/
public class S31 {

public static void main(String[] args) {

}

public void nextPermutation(int[] num) {
if(num.length <= 1){
return;
}

// 1. 从后往前找falling edge,下降沿。(下降之后的那个元素)
int edge = -1;
for(int i=num.length-2; i>=0; i--){
if(num[i] < num[i+1]){
edge = i;
break;
}
}

if(edge > -1){
// 2. 从下降沿开始往后找出替换它的元素。(就是第一个比它小的前一个元素)
for(int i=edge+1; i<num.length; i++){
if(num[edge] >= num[i]){
nextPermutationSwap(num, edge, i-1);
break;
}
if(i == num.length-1){
nextPermutationSwap(num, edge, i);
break;
}
}
}

// 3. 反转后面所有元素,让他从小到大sorted(因为之前是从大到小sorted的)
for(int i=edge+1, j=num.length-1; i<=edge+(num.length-edge-1)/2; i++, j--){
nextPermutationSwap(num, i, j);
}

}

public void nextPermutationSwap(int[] num, int i, int j){
int tmp = num[i];
num[i] = num[j];
num[j] = tmp;
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: