您的位置:首页 > 编程语言 > C语言/C++

leetcode刷题系列C++-next permutation

2016-02-19 18:00 381 查看
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<int>& 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<int>& nums, int begin,int end)
{
int tmp = 0;
while(begin < end)
{
tmp = nums[begin];
nums[begin] = nums[end];
nums[end] = tmp;
begin++;
end--;
}
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: