我有两份vert名单:V
和S
。
我愿从<代码>V和<代码>S上生成所有可能的直线图表。 因此,从<代码>中删除每一条。 缩略语 S 可以在内部和外部拥有任何优势。 因此,每一图表应准确载列<代码>的所有vert。 www.un.org/chinese/sc/presidency.asp 其结果既可包含相关内容,也可包含互不关联的图表。
First I thought 这是一个与权力有关的问题,但权力组合有许多其他可能只包含一个内容(我不需要这些内容)。
我目前的战略是:
- find all pairs between vertices from
V
, add toPairs
; - find all pairs between vertices from
S
, add toPairs
; - find all pairs between vertices from
V
andS
, add toPairs
; - generate subsets of Pairs of size not less than
V
in a such way, that each subset has exactly one instance of the vertexv
in the first position, one instance of the vertexv
in the second position and any number of instances of any vertexs
fromS
in any position.
我不敢肯定这一点是正确的,我希望了解任何想法。
Maybe I could create a fully-connected graph G
from V
and S
and then somehow extract subgraphs from it? (perhaps with the help of digraph:utils)
P.S.,我正试图在埃尔兰解决这一问题,因为现在我正在使用并积极学习的语言。 但是,我很高兴地看到 Java、鲁比或假装在答复中。