[LeetCode]31. Next Permutation

栏目: 编程工具 · 发布时间: 4年前

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 and use only constant 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

感觉属于那种数学找规律,然后把这个规律用程序表达,写的程序比较简单

找到i满足nums[i]<nums[i+1];

从{i-nums.length-1}中找到比nums[i]大且最小的,其余的按顺序排列

public void nextPermutation(int[] nums) {
    if(nums.length<=1) return;
    int i=nums.length-2;
    for(;i>=0;i--){
        if(nums[i]<nums[i+1]) break;
        if(i==0){
            Arrays.sort(nums);
            return;
        }
    }
    int first=nums[i];
    int[] ends=Arrays.copyOfRange(nums,i,nums.length);
    Arrays.sort(ends);
    int j=0;
    for(;j<ends.length;j++){
        if(ends[j]>first) break;
    }
    nums[i]=ends[j];
    i++;
    for(int k=0;k<ends.length;k++){
        if(j!=k){
            nums[i]=ends[k];
            i++;
        }
    }
}

以上所述就是小编给大家介绍的《[LeetCode]31. Next Permutation》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

B2B品牌管理

B2B品牌管理

(美)菲利普·科特勒、(德)弗沃德 / 楼尊 / 2008-1 / 35.00元

《B2B品牌管理》是第一本专门系统地阐述B2B品牌化的专业书籍,由营销大师菲利普•科特勒与弗沃德教授合作而成。他们以非凡的智慧和深厚的经验告诫B2B企业如何运用目标明确、重点突出的品牌化战略取得市场竞争优势地位,从而更加接近顾客,也更接近成功。在众多关于品牌的书籍中,《B2B品牌管理》的独特价值在于其根据实际环境探讨B2B品牌和品牌化问题,重点介绍和分析前沿的思想和最佳实践;通过与B2C企业的品牌......一起来看看 《B2B品牌管理》 这本书的介绍吧!

MD5 加密
MD5 加密

MD5 加密工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具