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], []] 该题和很类似,只不过是k需要从0到size中取值。
class Solution {private: vector> res; vector s;public: void tra(int k,int start,int dep,vector temp) { if(dep==k){ res.push_back(temp); return; } for(int i=start;i