zoukankan      html  css  js  c++  java
  • Leetcode: 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

    思路

    1. 明说 in-place

    2. 先从后面的字符中找到一个较小的, 替代前面的某一个数字, 然后进行一次排序

    3. 参考别人的思路. (2) 大体上是对的, 但是细节没有分析. 正确的解法

      a) Find out the first ascending pair from the end of the list.
       Taking the list [2,3,1] as example, we found the 2<3.
       Assuming the index of first element as i, the latter as j. Each time when j=i+1, reset the j to the end of list and --i.
       Turn to step 4 if the pair not found.

      b) if i >= 0, swap the number at indexes i and j.
        After this done, the elements after i is also in descending order.

      c) Reverse the elements after i. And return

      d) If no ascending pair is found, that means the given list is well sorted in the descending order. In this case, just reverse the whole list as required in      this problem.

    Update

    1. 题目有递归性质, "从后面的字符中寻找较小的, 替代前面的某一个数字", 这句话本身就暗示着在找到那个 "较小" 的数字之前, 后面的那些字符必定是有序的. 同时, 寻找的比较过程也保证了, 替换元素后, 后面的字符必然是逆序排列的

    代码

    class Solution {
    public:
        void nextPermutation(vector<int> &num) {
            int i = num.size()-1;
            for(; i > 0; i --) {
                if(num[i] > num[i-1]) {
                    break;
                }
            }
    
            if(i == 0) {
                reverse(num.begin(), num.end());
            }else{
                int lt = i, j;
                for(j = i; j < num.size(); j++) {
                    if(num[j] <= num[i-1]) {
                        break;
                    }
                }
                swap(num[i-1], num[j-1]);
                sort(num.begin()+i, num.end());
            }
        }
    };

     

  • 相关阅读:
    测试开发知识体系
    渗透测试全套教程(从原理到实战)
    解决edittext输入多行可以滑动的问题
    SharedPreferences实现自动登录记住用户名密码
    listview当选中某一个item时设置背景色其他的不变
    转 -android:程序无响应,你该如何定位问题?
    区分listview的item和Button的点击事件
    转--2014年最新810多套android源码2.46GB免费一次性打包下载
    转-android 支付宝SDK集成
    转-封装网络请求库,统一处理通用异常 (基于volley网络请求库)
  • 原文地址:https://www.cnblogs.com/xinsheng/p/3515365.html
Copyright © 2011-2022 走看看