S大小的列表的子集[长度为l]

时间:2014-01-16 14:36:43

标签: python python-3.x combinations powerset

嗨,我已经看了扔论坛,但没有找到我的问题的解决方案。 问题是 : 如何找到S大小的列表中所有可能的子集[长度为l]。 并将其以列表形式返回。

1 个答案:

答案 0 :(得分:1)

In [162]: x=[1,2,3]
     ...: from itertools import combinations
     ...: print [subset for i in range(len(x)+1) for subset in combinations(x, i)]

#outputs: [(), (1,), (2,), (3,), (1, 2), (1, 3), (2, 3), (1, 2, 3)]

要做没有组合

In [237]: import numpy as np
     ...: x=np.array([1,2,3])
     ...: n=2**len(x)
     ...: res=[]
     ...: for i in range(0, n):
     ...:     mask='{0:b}'.format(i).zfill(len(x))
     ...:     mask=np.array([int(idx) for idx in mask], bool)
     ...:     res.append(x[mask].tolist())
     ...: print res
#output: [[], [3], [2], [2, 3], [1], [1, 3], [1, 2], [1, 2, 3]]