我对编程知之甚少,所以这是一个不知道在哪里寻找答案的情况。我正在寻找创建如下数据结构:
vertexTopology = {vertexIndex: {clusterIndexes: intersection point}}
然而,实际上集群索引是由集群的索引组成的集合。所以我现在真正拥有的是:
vertexTopology = {5: [[(1, 2, 3), intx_1],
[(2, 3, 4), intx_2]]
6: [[(1, 2, 3), intx_3]]
...}
如何创建与每个集群集及其顶点索引关联的唯一索引?就像是:
vertexTopology = {5: {index associated with (1, 2, 3) AND vertex 5, intx_1},
{index associated with (2, 3, 4) AND vertex 5, intx_2},
6: {index associated with (1, 2, 3) AND vertex 6, intx_3}]
...}
我不确定我想要做的最好是用字典来实现,所以任何建议都非常受欢迎!
Bellow 是一个四点交叉点的图像,这样你就可以想象一下我在处理什么。