LintCode 51: Previous Permutation

  1. Previous Permutation
    中文English
    Given a list of integers, which denote a permutation.

Find the previous permutation in ascending order.

Example
Example 1:

Input:[1]
Output:[1]
Example 2:

Input:[1,3,2,3]
Output:[1,2,3,3]
Example 3:

Input:[1,2,3,4]
Output:[4,3,2,1]

Notice
The list may contains duplicate integers.

解法1:思路跟Next Permutation很相似,只是刚好反过来而已。
以A={3,1,2}为例,
先从后往前遍历,找到第一个index使得A[i]<A[i - 1]。这里我们找到index=1,因为1<3。然后我们再从后往前遍历,找到第一个i使得A[i]<A[index-1]。这里我们找到i=2,因为A[2]=2<3。然后我们把A[i]和A[index-1]对调,再将A[index…n-1]反排序即可。上面对调后有result={2,1,3},反排序后得{2,3,1}即为结果。
代码如下:

class Solution {
public:
    /*
     * @param nums: A list of integers
     * @return: A list of integers that's previous permuation
     */
    vector<int> previousPermuation(vector<int> &nums) {
        int n = nums.size();
        
        if (n <= 1) return nums;
        
        vector<int> results = nums;
    
        int index = 0;
        
        for (int i = n - 1; i > 0; --i) {
            if (nums[i] < nums[i - 1]) {
                index = i;
                break;
            }
        }

        if (index == 0) {
            reverse(results.begin(), results.end());
            return results;
        }
       
        for (int i = n - 1; i > 0; --i) {
            if (nums[i] < nums[index - 1]) {
                swap(results[i], results[index - 1]);
                sort(results.begin() + index, results.end());
                reverse(results.begin() + index, results.end());        
                break;
            }    
        } 
        
        return results;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值