leetcodeブラシシリーズC+-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
Subscribe to see which companies asked this question
class Solution {
public:
    void nextPermutation(vector& nums) {
      
        int pos = -1;
        int length = nums.size();
        //          
        for (int i = length - 1; i > 0; --i)
        {
            if(nums[i] > nums[ i - 1])
            {
                pos = i - 1;
                break;
            }
        }
        //                  pos            
        if(pos < 0)
        {
            reverse(nums,0,length - 1);
            return;
        }
        //                             
        for(int i = length - 1; i > pos; --i)
        {
            if(nums[i] > nums[pos])
            {
                int tmp = nums[i];
                nums[i] = nums[pos];
                nums[pos] = tmp;
                break;
            }
        }
        reverse(nums,pos + 1, length - 1);
        
    }
    void reverse(vector& nums, int begin,int end)
    {
        int tmp = 0;
        while(begin < end)
        {
            tmp = nums[begin];
            nums[begin] = nums[end];
            nums[end] = tmp;
            begin++;
            end--;
        }
    }
};