码迷,mamicode.com
首页 > 其他好文 > 详细

Next Permutation

时间:2014-08-19 00:57:53      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   代码   

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 

分析:得到一下个大一点的数可以通过下面四步:1)从右到左,找到第一个比其前一个小的数,记为pivot 2)从右到左找到第一个比pivot大的数,记作change 3)交换pivot和change的值 4)将pivot以后的数反序。代码如下:

 1 class Solution {
 2 public:
 3     void nextPermutation(vector<int> &num) {
 4         vector<int>::reverse_iterator pivot = next(num.rbegin());
 5         while(pivot != num.rend() && *pivot >= *prev(pivot))pivot++;
 6         if(pivot == num.rend())
 7             reverse(num.begin(),num.end());
 8         else{
 9             vector<int>::reverse_iterator change = num.rbegin();
10             while(*change <= *pivot)change++;
11             swap(*pivot,*change);
12             reverse(num.rbegin(),pivot);
13         }
14     }
15 };

 

Next Permutation,布布扣,bubuko.com

Next Permutation

标签:style   blog   color   os   io   ar   div   代码   

原文地址:http://www.cnblogs.com/Kai-Xing/p/3920925.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!