码迷,mamicode.com
首页 > 其他好文 > 详细

Permutations - LeetCode

时间:2019-02-15 15:53:40      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:小结   lis   next   htm   .com   code   时间复杂度   i++   img   

题目链接

Permutations - LeetCode

注意点

  • n个数字共有n!个全排列

解法

解法一:每一个排列用Next Permutation - LeetCode中的函数生成,一共有n!个。时间复杂度O(n)。

class Solution {
public:
    void nextPermutation(vector<int>& nums) {
        int n = nums.size(),i = n-2,j = n-1;
        while(i >= 0 && nums[i] >= nums[i+1]) i--;
        if(i >= 0)
        {
            while(nums[j] <= nums[i]) j--;
            swap(nums[i],nums[j]);
        }
        reverse(nums.begin()+i+1,nums.end());
    }
    vector<vector<int>> permute(vector<int>& nums) {
        vector<vector<int>> ret;
        int n = nums.size(),temp = 1,i;
        for(i = 1;i <= n;i++)
        {
            temp *= i;
        }
        while(temp >= 1)
        {
            ret.push_back(nums);
            nextPermutation(nums);
            temp--;
        }
        return ret;
    }
};

技术图片

小结

  • 排列题,有许多变种

Permutations - LeetCode

标签:小结   lis   next   htm   .com   code   时间复杂度   i++   img   

原文地址:https://www.cnblogs.com/multhree/p/10383748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!