c_cpp 31.下一个排列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 31.下一个排列相关的知识,希望对你有一定的参考价值。
class Solution {
public:
void nextPermutation(vector<int>& nums) {
if (nums.empty() || nums.size() == 0) return;
int firstSmall = -1;
for (int i = nums.size() - 2; i >= 0; i--) {
if (nums[i] < nums[i + 1]) {
firstSmall = i;
break;
}
}
if (firstSmall == -1) {
reverse(nums.begin(), nums.end());
return;
}
int firstLarge = -1;
for (int i = nums.size() - 1; i > firstSmall; i--) {
if (nums[i] > nums[firstSmall]) {
firstLarge = i;
break;
}
}
swap(nums[firstSmall], nums[firstLarge]);
reverse(nums.begin() + firstSmall + 1, nums.end()); // need "+1"
return;
}
};
以上是关于c_cpp 31.下一个排列的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode31. 下一个排列
31. 下一个排列
31. 下一个排列
LeetCode 31. 下一个排列 | Python
LeetCode 31. 下一个排列 | Python
31.下一个排列