【问题标题】:How to generate itertools product without duplicates and symmetric?如何生成没有重复和对称的 itertools 产品?
【发布时间】:2020-11-29 12:11:26
【问题描述】:

我知道有一个非常相似的问题:Itertools product without repeating duplicates

但我有一些不同的东西。例如:

a = ['add', 'sub']
b = [2,3, 'a', 'b']
c = [1,3, 'a', 'c']
list(it.product(a, b, c))  # result is:[('add', 2, 1),('add', 2, 3),('add', 2, 'a'), ('add', 2, 'c'),
#('add', 3, 1),('add', 3, 3),('add', 3, 'a'),('add', 3, 'c'),('add', 'a', 1),('add', 'a', 3),
#('add', 'a', 'a'),('add', 'a', 'c'), ('add', 'b', 1),('add', 'b', 3),('add', 'b', 'a'),
#('add', 'b', 'c'),('sub', 2, 1),('sub', 2, 3),('sub', 2, 'a'),('sub', 2, 'c'),('sub', 3, 1),
#('sub', 3, 3),('sub', 3, 'a'),('sub', 3, 'c'),('sub', 'a', 1),('sub', 'a', 3),('sub', 'a', 'a'),
#('sub', 'a', 'c'),('sub', 'b', 1),('sub', 'b', 3),('sub', 'b', 'a'),('sub', 'b', 'c')]

结果:

我不想将add(a,a) 作为第一个值 == 第二个值。

我只想保留add(3,a)add(a,3) 中的 1 个,因为它是对称的。

我的示例只包含两个列表,但我可能会使用 5 个或更多列表来生成产品。

我不能使用combinations,因为:

product(['add', 'sub', 1,2,3, 'a','b', 'c'], repeat=3)product(['add', 'sub'], [2,3, 'a', 'b'], [1,3, 'a', 'c']) 不同

product(['add', 'sub', 1,2,3, 'a','b', 'c'], repeat=3) 中的某些内容不适合我。

我想要一个快速的方法,因为我的程序是时间敏感的。

【问题讨论】:

  • add(3,a)add(a,3) 是对称的,但对于 'sub' 是否同样适用(假设这些是已知函数)?
  • @Tomerikoo 是的,我认为它们相同,我正在尝试自动生成有意义的 expr。 sub(a, 2) 和 sub(2, a) 对我来说是一样的。因为它没有提供额外的含义。并感谢您编辑问题,我的语法不好
  • 你能有('add', 'c', 2)吗?

标签: python combinations product itertools


【解决方案1】:

IIUC,你可以这样做:

from itertools import product, combinations, chain

a = ['add', 'sub']
b = [2, 3, 'a', 'b']
c = [1, 3, 'a', 'c']

for operation, operands in product(a, combinations(set(chain(b, c)), r=2)):
    print((operation, *operands))

输出

('add', 1, 2)
('add', 1, 3)
('add', 1, 'a')
('add', 1, 'b')
('add', 1, 'c')
('add', 2, 3)
('add', 2, 'a')
('add', 2, 'b')
('add', 2, 'c')
('add', 3, 'a')
('add', 3, 'b')
('add', 3, 'c')
('add', 'a', 'b')
('add', 'a', 'c')
('add', 'b', 'c')
('sub', 1, 2)
('sub', 1, 3)
('sub', 1, 'a')
('sub', 1, 'b')
('sub', 1, 'c')
('sub', 2, 3)
('sub', 2, 'a')
('sub', 2, 'b')
('sub', 2, 'c')
('sub', 3, 'a')
('sub', 3, 'b')
('sub', 3, 'c')
('sub', 'a', 'b')
('sub', 'a', 'c')
('sub', 'b', 'c')

【讨论】:

  • 这就是我想要的......根据 cmets 的澄清,这似乎是最明智的做法
  • 产品、组合、链...不错的组合:)
猜你喜欢
  • 1970-01-01
  • 2015-06-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-12-04
  • 1970-01-01
  • 2011-05-08
  • 1970-01-01
相关资源
最近更新 更多