Subsets II
时间:2014-05-02 20:19:03
收藏:0
阅读:437
Given a collection of integers that might contain duplicates, 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,2], a solution
is:
[ [2], [1], [1,2,2], [2,2], [1,2], [] ]
原文:http://blog.csdn.net/icomputational/article/details/24850209
评论(0)