• LeetCode 31: Next Permutation


    题目描述:

    mplement 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,31,3,2
    3,2,11,2,3
    1,1,51,5,1

    思路:

    举例{1,2,3,4,5},一共5个数字,排列的依次顺序为(如下)

    {1,2,3,4,5}

    {1,2,3,5,4}

    {1,2,4,3,5}

    {1,2,4,5,3}

    {1,2,5,3,4}

    {1,2,5,4,3}

    ……

    {5,4,3,2,1}

    从上面的排列可以总结出两个排列变化的规律如下:

    1.从右向左找到第一个小于它右边数字的数字a

    2.从a的右边找到比a大的那个数字b

    3.交换a和b,那么b就在a的左边了

    4.将b右边的第一个数字和最后一个数字中间的数字进行翻转

    5.需要注意特殊情况,最后一个排列,直接对整个数组翻转即可。

    代码:

    void nextPermutation(vector<int> &num) {
    		vector<int>::iterator it;
    		for(it=num.end()-1;it!=num.begin();it--){
    			if(*it>*(it-1)){
    				break;
    			}
    		}
    		if(it==num.begin()){
    			reverse(num.begin(),num.end());
    			return;
    		}
    		vector<int>::iterator pivot = it-1;
    		vector<int>::iterator it2;
    		for(it2=num.end()-1;it2!=pivot;it2--){
    			if(*it2>*pivot){
    				break;
    			}
    		}
    		swap(*pivot,*it2);
    		reverse(it,num.end());
    	}
    
  • 相关阅读:
    学习php 韩顺平 数据类型 三元运算,字符串运算类型运算
    学习php 韩顺平
    贪小便宜吃大亏关于汇泽平板和智能手表
    学习spring的第三天
    学习spring的第二天
    学习spring的第一天
    mybatis批量添加和删除
    关于mybatis的<selectKey>中的keyColumn
    mybatis+maven+父子多模块进行crud以及动态条件查询
    mybatis的插入数据后的主键获取
  • 原文地址:https://www.cnblogs.com/xiamaogeng/p/4364322.html
Copyright © 2020-2023  润新知