首页 > 其他 > 详细

leetcode 46 全排列

时间:2021-08-23 19:39:34      阅读:20      评论:0      收藏:0      [点我收藏+]

自己的暴力(?)算法问题主要在于没有在循环的过程中重置临时变量,导致出现的问题,贴代码

class Solution {
public:
    vector<vector<int>> res;
    vector<vector<int>> permute(vector<int>& nums) 
    {
        vector<int> res_temp;
        generate(nums,res_temp);
        return res;                 
    }
    void generate(vector<int> int_in,vector<int> res_in)
    {
        for(auto it = int_in.begin() ; it < int_in.end(); ++it)
        {
            vector<int> temp = int_in;
            vector<int> res_temp = res_in;
            res_temp.push_back(*it);
            if(temp.size() == 1)
            {
                res.push_back(res_temp);
            }
            else
            {
                temp.erase(find(temp.begin(),temp.end(),*it));
                generate(temp,res_temp);
            }
            
        }
    }
};

 

leetcode 46 全排列

原文:https://www.cnblogs.com/zhaohhhh/p/15176949.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!