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