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 };
  • 相关阅读:
    云谷分布式端口扫描与代理验证系统(一)简介
    Linux 共享库:LD_LIBRARY_PATH 与ld.so.conf_爱过了就好_新浪博客
    分享:QT QJson库编译心得
    分享:Zed Attack Proxy 2.0 发布,Web 渗透测试
    LIBTOOL is undefined 解决方法
    linux下.a/.so/.la目标库区别
    LDAmath文本建模
    分享:SchemaCrawler 9.4 发布,数据库结构输出
    JQ也要面向对象~在JQ中扩展静态方法和实例方法
    将不确定变为确定~Flag特性的枚举是否可以得到Description信息
  • 原文地址:https://www.cnblogs.com/lxd2502/p/4398179.html
Copyright © 2011-2022 走看看