首页 > 代码库 > (每日算法)LeetCode --- Subsets(子集合)
(每日算法)LeetCode --- Subsets(子集合)
Given a set of distinct integers, S, return all possible subsets.
Note:
- Elements in a subset must be in non-descending order.
- The solution set must not contain duplicate subsets.
For example,
If S = [1,2,3]
, a solution is:
[ [3], [1], [2], [1,2,3], [1,3], [2,3], [1,2], [] ]
Show Tags
子集合,还是通过回溯的方法来求解。跟之前k个元素的自己不一样的是这里任意个子元素都可以作为子集合。因此有子集合的时候我们都希望能够添加到solution中,可以通过空迭代的方式添加。还有就是先添加一个元素,来调用sub函数,然后回溯,就是把刚添加的元素去除。因为在调用sub的过程中还有分支的过程,这是足够的。
class Solution { public: void sub(vector<int>& s, int index, vector<int>& path, vector<vector<int>>& solution) { if(s.size() == index) { solution.push_back(path); return; } sub(s, index + 1, path, solution); path.push_back(s[index]); sub(s, index + 1, path, solution); path.pop_back(); } vector<vector<int> > subsets(vector<int> &S) { vector<vector<int>> solution; vector<int> path; sort(S.begin(), S.end()); sub(S, 0, path, solution); return solution; } };
(每日算法)LeetCode --- Subsets(子集合)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。