Question:Given a set of distinct integers, return all possible subsets.Example:If S =[1,2,3], a solution is:[ [3], [1], [2], [1,2,3], [1,3], [2,...
分类:
其他好文 时间:
2015-11-28 11:56:23
阅读次数:
121
题意: 给一个集合,有n个可能相同的元素,求出所有的子集(包括空集,但是不能重复)。思路: 看这个就差不多了。LEETCODE SUBSETS (DFS) 1 class Solution { 2 public: 3 vector> subsets(vector& nums) { 4 ...
分类:
其他好文 时间:
2015-11-19 00:27:43
阅读次数:
218
题意: 给一个集合,有n个互不相同的元素,求出所有的子集(包括空集,但是不能重复)。思路: DFS方法:由于集合中的元素是不可能出现相同的,所以不用解决相同的元素而导致重复统计。 1 class Solution { 2 public: 3 vector> subsets(vector&...
分类:
其他好文 时间:
2015-11-18 22:58:18
阅读次数:
211
Given a set of distinct integers,nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set must not...
分类:
其他好文 时间:
2015-11-10 15:50:07
阅读次数:
210
我的思路:二进制位上有1则加class Solution {public: vector> subsets(vector& nums) { vector> res; sort(nums.begin(),nums.end()); for(int i=0;...
分类:
其他好文 时间:
2015-11-03 19:16:50
阅读次数:
244
1. TitleSubsets II2. Http addresshttps://leetcode.com/problems/subsets-ii/3. The questionGiven a collection of integers that might contain duplicates,...
分类:
其他好文 时间:
2015-11-01 19:18:18
阅读次数:
138
Subsets IIGiven a list of numbers that may has duplicate numbers, return all possible subsetsExampleIfS=[1,2,2], a solution is:[ [2], [1], [1,2,2],...
分类:
其他好文 时间:
2015-10-29 00:13:40
阅读次数:
164
QuestionGiven a collection of integers that might contain duplicates,nums, return all possible subsets.Note:Elements in a subset must be in non-descen...
分类:
其他好文 时间:
2015-10-19 07:09:01
阅读次数:
222
QuestionGiven a set of distinct integers,nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set ...
分类:
其他好文 时间:
2015-10-14 14:22:51
阅读次数:
126