无论如何,我知道如何生成一个集合的组合,这是Python内置的(我使用的)。但是如何用替换产生组合?
假设我有一个具有两个相同元素的集合 - 例如, AABCDE 。
3个项目的组合可能是:
"AAB"
"ABC"
"CDE"
然而,该程序将计算 ABC 两次 - 一次使用第一个A,第二个使用第二个A.
在没有重复的情况下生成此类组合的好方法是什么?
感谢。
答案 0 :(得分:2)
将其转换为set
,这是摆脱重复的最简单方法。
答案 1 :(得分:2)
>>> import itertools
>>> ["".join(x) for x in (itertools.combinations(set("AABCDE"),3))]
['ACB', 'ACE', 'ACD', 'ABE', 'ABD', 'AED', 'CBE', 'CBD', 'CED', 'BED']
>>>
从你的其他评论中,我认为我误解了你的要求。
>>> import itertools
>>> set("".join(x) for x in (itertools.combinations("AABCDE",3)))
set(['AAE', 'AAD', 'ABC', 'ABD', 'ABE', 'AAC', 'AAB', 'BCD', 'BCE', 'ACD', 'CDE', 'ACE', 'ADE', 'BDE'])
答案 2 :(得分:0)
def stepper_w_w(l,stop):#stepper_with_while
"""l is a list of any size usually you would input [1,1,1,1...],
stop is the highest number you want to stop at so if you put in stop=5
the sequence would stop at [5,5,5,5...]
This stepper shows the first number that equals the last.
This generates combinations with replacement. """
numb1=1
while numb1<stop:
#print(numb1)
l[0]=numb1
NeL=0
while l[len(l)-1]<=numb1:
if l[NeL]==l[len(l)-1]:
l[NeL]+=1
l[(NeL+1):]=[1]*((len(l))-(NeL+1))
print(l)
"""iter_2s=NeL+1
while iter_2s<=(len(l)-1): #this is different from above
l[iter_2s]=2
iter_2s+=1
print(l)"""
NeL=-1
NeL+=1
numb1+=1