您的位置:首页 > 其它

[leetcode 78] Subsets

2015-01-11 14:22 232 查看
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],
[]
]

class Solution {
public:
vector<vector<int> > subsets(vector<int> &S) {
sort(S.begin(), S.end());
vector<vector<int> > res;
vector<int> path;
dfs(S, 0, path, res);
return res;

}
void dfs(const vector<int> &s, int start, vector<int> &path, vector<vector<int> > &res) {
if (start == s.size()) {
res.push_back(path);
return ;
}
for (int i = start; i < s.size(); i++) {
//dfs(s, i+1, path, res);
path.push_back(s[i]);
dfs(s, i+1, path, res);
path.pop_back();
}
res.push_back(path);
return ;
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: