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

leetcode_permutaion

时间:2017-05-29 00:29:41      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:wap   ever   space   code   for   next   nbsp   rbegin   aio   

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    int a[3] = { 1,3,2};
    vector<int>num(a, a + 3);
    auto rfirst = num.rbegin();
    auto rend = num.rend();
    auto p = next(rfirst);
    while (p != rend && *p > *(prev(p)))
        ++p;
    if (p == rend)
        reverse(num.begin(), num.end());
    else
    {
        for (auto i = rfirst; i!=rend; ++i)
        {
            if (*i > *p)swap(*i, *p);
            reverse(rfirst, i);
        }
    }
    for (auto i : num)
    {
        cout << i << " ";
    }
    system("pause");
    return 0;
}

 

leetcode_permutaion

标签:wap   ever   space   code   for   next   nbsp   rbegin   aio   

原文地址:http://www.cnblogs.com/babyking1/p/6917035.html

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