31. Next Permutation

本文介绍了一个中等难度的算法题,实现下一个排列数。文章详细解释了如何通过查找并交换元素,以及反转数组部分区域来达到目标。提供了一个Java代码示例,该示例在在线提交中运行速度优于98.59%,内存使用少于0.97%。

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

难度:medium

题目:
实现下一个排列数,将数字按词法顺序重新排列为下一个更大的数字置换。如果这样的排序不存在,它一定轮转到了最小的那个数。
必须原地置换并且只允许使用常量空间。

思路:参照C++ STL库中实现的next_permutation

Runtime: 8 ms, faster than 98.59% of Java online submissions for Next Permutation.
Memory Usage: 31.2 MB, less than 0.97% of Java online submissions for Next Permutation.

class Solution {
    /**
    * 1. find i <  j (i + 1) from end to start
    * 2. find i < k swap (i, k) from end to start
    * 3. reverse [j, last]
    */
    public void nextPermutation(int[] nums) {
        if (null == nums || nums.length <= 1) {
            return;
        }
        
        int right = nums.length - 1;
        int j = right;
        for (; j > 0; j--){
            if (nums[j - 1] < nums[j]) break;
        }
        for (int k = right; k >= 0; k--) {
            if (j > 0 && nums[k] > nums[j - 1]) {
                swapArray(nums, j - 1, k);
                break;
            }
        }

        for (; j < right; j++, right--) {
            swapArray(nums, j, right);
        }
    }
    
    private void swapArray(int[] a, int i, int j) {
        int t = a[i];
        a[i] = a[j];
        a[j] = t;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值