zoukankan      html  css  js  c++  java
  • 【Next Permutation】cpp

    题目

    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

    代码

    class Solution {
    public:
        void nextPermutation(vector<int> &num) {
            const int len = num.size();
            if (len<2) return;
            std::vector<int>::iterator pivot=num.end();
            // find the pivot pointer
            for (std::vector<int>::iterator i = num.end()-1; i != num.begin(); --i)
            {
                if ( *i>*(i-1) )
                {
                    pivot = i-1;
                    break;
                }
            }
            // if the largest, directly reverse
            if ( pivot==num.end() ) 
            {
                std::reverse(num.begin(), num.end());
                return;
            }
            // else exchange the value of pivot and it's next larger element
            std::vector<int>::iterator next_larger_pivot = pivot;
            for (std::vector<int>::iterator i = num.end()-1; i != num.begin(); --i)
            {
                if ( *pivot<*i )
                {
                    next_larger_pivot = i;
                    break;
                }
            }
            std::swap(*pivot, *next_larger_pivot);
            // reverse the pivot's right elements
            std::reverse(pivot+1, num.end());
        }
    }

    Tips:

    上网搜搜Next Permutation的算法,分四步:

    1. 从右往左 找左比右小的左 记为pivot

    2. 从右往左 找第一个比pivot大的 记为next_larger_pivot

    3. 交换pivot与next_larger_pivot所指向的元素

    4. 让pivot右边的元素(不包括pivot)逆序

    按照上面的算法,多测测case,找找边界条件。

    注意找到pivot和next_larger_pivot之后要break退出循环。

    ===================================

    第二次过这道题,思路已经记得比较模糊了。能做到的就是捡一遍思路,coding的过程很快。

                // from right to left find first violate increase trend
                int pos1 = -1;
                for ( int i=nums.size()-1; i>0; --i )
                {
                    if ( nums[i]>nums[i-1] )
                    {
                        pos1 = i-1;
                        break;
                    }
                }
                // cout << "pos1:" << pos1 << endl;
                if ( pos1==-1 ) 
                {
                    std::reverse(nums.begin(), nums.end());
                    return;
                }
                // from right to left find the first larger than pos1
                int pos2 = nums.size()-1;
                for ( int i=nums.size()-1; i>=0; --i )
                {
                    if ( nums[i]>nums[pos1] )
                    {
                        pos2 = i;
                        break;
                    }
                }
                // cout << "pos2:" << pos2 << endl;
                // swap pos1 pos2
                std::swap(nums[pos1], nums[pos2]);
                // reverse from pos1's right to end
                std::reverse(nums.begin()+pos1+1, nums.end());

    这个算法就是个套路,多扫几遍记住就OK了。

  • 相关阅读:
    MVC HTTP 错误 403.14
    web.config connectionStrings 数据库连接字符串的解释(转载)
    bootstrap div 弹出与关闭
    jquery操作select(取值,设置选中)
    VS2013使用EF6与mysql数据库
    php中创建和调用webservice接口示例
    java script 确认框
    mysql中判断记录是否存在方法比较
    根据Unicode编码用C#语言把它转换成汉字的代码
    微软架构师解读Windows Server 2008 R2新特性
  • 原文地址:https://www.cnblogs.com/xbf9xbf/p/4450920.html
Copyright © 2011-2022 走看看