zoukankan      html  css  js  c++  java
  • 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());
    	}
    
  • 相关阅读:
    P1149 火柴棒等式
    SpringMVC之reset风格和form表单格式的curd
    SpringMVC之转发重定向
    文件下载
    文件上传
    数据库分页
    使用代理创建连接池 proxyPool
    Proxy 示例
    Proxy基础---------获取collection接口的构造跟方法
    javaBean中 字符串 转 date 类型转换
  • 原文地址:https://www.cnblogs.com/xiamaogeng/p/4364322.html
Copyright © 2011-2022 走看看