题目
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
If such an arrangement is not possible, it must rearrange it as the lowest possible order (i.e., sorted in ascending order).
The replacement must be in place and use only constant extra memory.
Example 1:
Input: nums = [1,2,3]
Output: [1,3,2]
Example 2:
Input: nums = [3,2,1]
Output: [1,2,3]
Example 3:
Input: nums = [1,1,5]
Output: [1,5,1]
Example 4:
Input: nums = [1]
Output: [1]
Constraints:
- 1 <=
nums.length
<= 100 - 0 <=
nums[i]
<= 100
解析
有std::next_permutation
可用, 一行搞定.
或者, 根据wiki有如下方法:
- 找到最大下标
k
满足a[k] < a[k+1]
. 若没有则已经是最后一个置换. - 找到最大下边
l
满足l > k && a[l] > a[k]
. swap(a[k], a[l])
.- 调换
a[k+1]
至结尾的所有元素.
代码
std
1 | class Solution { |
impl
1 | class Solution { |