Java for LeetCode 031 Next Permutation

Next Permutation

Total Accepted: 33595 Total Submissions: 134095

 
 

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.

解题思路:

题目不难,关键是理解题目的意思: 如果把nums看做一个数字的话,即返回比原来数大的最小的数(如果没有(原数是降序排列)则返回升序排列)。

也就是字典排序,JAVA实现如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
static public void nextPermutation(int[] nums) {
    int index = nums.length - 1;
    while (index >= 1) {
        if (nums[index] > nums[index - 1]) {
            int swapNum=nums[index-1],swapIndex = index+1;
            while (swapIndex <= nums.length - 1&& swapNum < nums[swapIndex])
                swapIndex++;
            nums[index-1]=nums[swapIndex-1];
            nums[swapIndex-1]=swapNum;
            reverse(nums,index);
            return;
        }
        index--;
    }
    reverse(nums,0);
}
static void reverse(int[] nums,int swapIndex){
    int[] swap=new int[nums.length-swapIndex];
    for(int i=0;i<swap.length;i++)
        swap[i]=nums[nums.length-1-i];
    for(int i=0;i<swap.length;i++)
        nums[swapIndex+i]=swap[i];
}

 

posted @   TonyLuis  阅读(198)  评论(0编辑  收藏  举报
编辑推荐:
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
阅读排行:
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 如何打造一个高并发系统?
点击右上角即可分享
微信分享提示