Leetcode: 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

 

思路

1. 明说 in-place

2. 先从后面的字符中找到一个较小的, 替代前面的某一个数字, 然后进行一次排序

3. 参考别人的思路. (2) 大体上是对的, 但是细节没有分析. 正确的解法

  a) Find out the first ascending pair from the end of the list.
   Taking the list [2,3,1] as example, we found the 2<3.
   Assuming the index of first element as i, the latter as j. Each time when j=i+1, reset the j to the end of list and --i.
   Turn to step 4 if the pair not found.

  b) if i >= 0, swap the number at indexes i and j.
    After this done, the elements after i is also in descending order.

  c) Reverse the elements after i. And return

  d) If no ascending pair is found, that means the given list is well sorted in the descending order. In this case, just reverse the whole list as required in      this problem.

 

Update

1. 题目有递归性质, "从后面的字符中寻找较小的, 替代前面的某一个数字", 这句话本身就暗示着在找到那个 "较小" 的数字之前, 后面的那些字符必定是有序的. 同时, 寻找的比较过程也保证了, 替换元素后, 后面的字符必然是逆序排列的

 

代码

 

class Solution {
public:
    void nextPermutation(vector<int> &num) {
        int i = num.size()-1;
        for(; i > 0; i --) {
            if(num[i] > num[i-1]) {
                break;
            }
        }

        if(i == 0) {
            reverse(num.begin(), num.end());
        }else{
            int lt = i, j;
            for(j = i; j < num.size(); j++) {
                if(num[j] <= num[i-1]) {
                    break;
                }
            }
            swap(num[i-1], num[j-1]);
            sort(num.begin()+i, num.end());
        }
    }
};

 

 

 

 

转载于:https://www.cnblogs.com/xinsheng/p/3515365.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值