leetcode 78. Subsets (medium)

原题地址

  1. 递归回溯
    求排列组合等常用到的方法
class Solution
{
  public:
	vector<vector<int>> subsets(vector<int> &nums)
	{
		vector<vector<int>> res;
		vector<int> temp;
		helper(nums, temp, res, 0);
		return res;
	}

	void helper(vector<int> &nums, vector<int> &temp, vector<vector<int>> &res, int last)
	{
		res.push_back(temp);
		for (int i = last; i < nums.size(); i++)
		{
			temp.push_back(nums[i]);
			helper(nums, temp, res, i + 1);
			temp.pop_back();
		}
	}
};
  1. 迭代插入
    先将容器res初始化为[[]]
    将 1 插入到 [] 中: [[], [1]];
    将 2 插入到 [][1]中: [[], [1], [2], [1, 2]];
    将 3 插入到 [], [1], [2],[1, 2]中: [[], [1], [2], [1, 2], [3], [1, 3], [2, 3], [1, 2, 3]].
class Solution
{
  public:
	vector<vector<int>> subsets(vector<int> &nums)
	{
		vector<vector<int>> res = {{}};
		for (auto num : nums)
		{
			int n = res.size();
			for (int i = 0; i < n; i++)
			{
				res.push_back(res[i]);
				res.back().push_back(num);
			}
		}
		return res;
	}
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值