码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 78 Subsets

时间:2015-07-12 10:53:37      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:

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 contain duplicate subsets.

 

For example,
If nums = [1,2,3], a solution is:

[
  [3],
  [1],
  [2],
  [1,2,3],
  [1,3],
  [2,3],
  [1,2],
  []
]

 递归:先排序数组,然后对于每个集合减去其中一个元素,在保证其唯一的情况下加入数组,并记载当前数组长度。

在下一次递归中,在ans数组中开始需要减去元素的集合index为之前ans数组的长度。终止条件为最后生成了空集合。

def subsets(nums)
    sub([nums.sort],0)
end

def sub(ans,start=0)
    t = ans.length
    (start...t).each do |i|
        ans[i].each do |x|
            temp = ans[i] - [x]
            ans << temp unless ans.include?(temp)
        end
    end
    return ans if ans[-1].empty?
    sub(ans,t)
end

 

 

Leetcode 78 Subsets

标签:

原文地址:http://www.cnblogs.com/lilixu/p/4640520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!