leetcode_31. Next Permutation

https://leetcode.com/problems/next-permutation/#/description

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

Subscribe to see which companies asked this question.

题意:给你一个数组,问他的下一个排列是什么。。。

思路:看几组例子就可以知道了~~

1 2 3 5 4   ------>  1 2 4 3 5

1 2 5 3 4   ------>  1 3 2 4 5

1 3 2 5 4   ------>  1 3 4 2 5

所以,规律就是从后面往前找,找到一个nums[i-1]


class Solution {
public:
    void nextPermutation(vector& nums) {
        int length = nums.size();
        int pos=-1;
        for(int i=length-1;i>0;i--)
        {
            if(nums[i-1]nums[i]&&nums[i]>nums[pos])
            {
                Min=nums[i];
                p=i;
            }
        }
        int t=nums[p];
        nums[p]=nums[pos];
        nums[pos]=t;
        sort(nums.begin()+pos+1,nums.end());
    }
};


你可能感兴趣的:(acm)