zoukankan      html  css  js  c++  java
  • [leetcode] Next Permutation

    Next Permutation

    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
     
     

    next_permutation函数实现原理如下:

             在当前序列中,从尾端往前寻找两个相邻元素,前一个记为*i, 后一个记为*ii,并且满足*i < *ii。然后再从尾端寻找另一个元素*j,如果满足*i < *j,即将第i个元素与第j个元素对调,并将第ii个元素之后(包括ii)的所有元素颠倒排序,即求出下一个序列了。

     1 class Solution
     2 
     3 {
     4 
     5 public:
     6 
     7   void nextPermutation(vector<int> &num)
     8 
     9   {
    10 
    11     if(num.size() < 2)
    12 
    13       return;
    14 
    15  
    16 
    17     int i = 0, k = 0;
    18 
    19  
    20 
    21     for(i = num.size() - 2; i>=0; i--)
    22 
    23       if(num[i] < num[i+1])
    24 
    25         break;
    26 
    27  
    28 
    29     for(k = num.size()-1; k>i; k--)
    30 
    31       if(num[k] > num[i])
    32 
    33         break;
    34 
    35  
    36 
    37     if(i>=0)
    38 
    39       swap(num[i], num[k]);
    40 
    41  
    42 
    43     reverse(num.begin()+i+1, num.end());
    44 
    45   }
    46 
    47 };
    扩展当所求序列为当前序列的字典序的前一个序列时:

    prev permutation函数实现原理如下:

             在当前序列中,从尾端往前寻找两个相邻元素,前一个记为*i, 后一个记为*ii,并且满足*i > *ii。然后再从尾端寻找另一个元素*j,如果满足*i > *j,即将第i个元素与第j个元素对调,并将第ii个元素之后(包括ii)的所有元素颠倒排序,即求出上一个序列了。

     1 class Solution
     2 
     3 {
     4 
     5 public:
     6 
     7   void prevPermutation(vector<int> &num)
     8 
     9   {
    10 
    11     if(num.size() < 2)
    12 
    13       return;
    14 
    15  
    16 
    17     int i=0, k=0;
    18 
    19  
    20 
    21     for(i = num.size()-2; i>=0; i--)
    22 
    23       if(num[i] > num[i+1])
    24 
    25         break;
    26 
    27  
    28 
    29     for(k = num.size()-1; k>i; k--)
    30 
    31       if(num[i] > num[k])
    32 
    33         break;
    34 
    35  
    36 
    37     if(i>=0)
    38 
    39       swap(num[i], num[k]);
    40 
    41  
    42 
    43     reverse(num.begin()+i+1, num.end());
    44 
    45   }
    46 
    47 };
  • 相关阅读:
    http://gzbbs.soufun.com/2811007370~59~471/4372594_4372594.htm
    借dudu的地方招个标,寻找广州网站开发外包公司
    System.InvalidOperationException: 哈希表插入失败。加载因子太高。
    网络艺术品交易黑洞
    水润麻涌
    麻涌蕉林香飘四季
    web开发的浏览器(工具)插件
    很好很强大的六个SEO关键词分析工具
    (转载)library cache lock和library cache pin到底是什么
    (转载)library cache lock和library cache pin到底是什么(续)
  • 原文地址:https://www.cnblogs.com/lxd2502/p/4398179.html
Copyright © 2011-2022 走看看