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());
    	}
    
  • 相关阅读:
    UVa 10905
    有道云笔记同步IT笔试面试资源
    送给80、90后的人生经典语录,别再孩子气了
    ch1 位姿表示和旋转矩阵
    jetson nano使用RealSenseD400深度相机
    jetson nano电源(性能)管理
    http://emanual.robotis.com/docs/en/platform/turtlebot3/overview/
    Jetson Nano配置与使用——中文输入法ibus配置
    jetson nano更改源
    ROS多机通信
  • 原文地址:https://www.cnblogs.com/xiamaogeng/p/4364322.html
Copyright © 2011-2022 走看看