LeetCode 31 Next Permutation

31. Next Permutation

Total Accepted: 62997 Total Submissions: 238816 Difficulty: Medium

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,31,3,2
3,2,11,2,3
1,1,51,5,1

Subscribe to see which companies asked this question

Have you met this question in a real interview?


直接用的STL


class Solution {
public:
    void nextPermutation(vector<int>& nums) 
    {
        next_permutation(nums.begin(), nums.end());
    }
};


你可能感兴趣的:(LeetCode 31 Next Permutation)