leetcode_31. Next Permutation

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/gxh27954/article/details/70024996

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]<nums[i],然后再去后面找一个最小的比nums[i-1]大的,再对i~end的位置进行排序~~详情见代码


class Solution {
public:
    void nextPermutation(vector<int>& nums) {
        int length = nums.size();
        int pos=-1;
        for(int i=length-1;i>0;i--)
        {
            if(nums[i-1]<nums[i])
            {
                pos=i-1;
                break;
            }
        }
        if(pos==-1)
        {
            sort(nums.begin(),nums.end());
            return;
        }
        int Min=1<<30;
        int p=0;
        for(int i=pos+1;i<length;i++)
        {
            if(Min>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());
    }
};


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章