在Python中将有向图(列表数组)转换为无向图(列表数组)的快速方法?
我正在尝试将一组弧转换为一组边以进行一些简单的可视化工作。
我的弧数据目前看起来像:
(
['A','B',2],
['B','A',3],
['A','C',4],
['B','C',2],
)
我需要将其转换为边缘,因此方向被组合起来,看起来像这样:
(
['A','B',5],
['A','C',4],
['B','C',2],
)
我认为应该有一种非常Pythonic的方法来做到这一点,但不确定最优雅的方法是什么。
I'm trying to convert a set of arcs to a set of edges for some simple visualization work.
my arc data currently looks like:
(
['A','B',2],
['B','A',3],
['A','C',4],
['B','C',2],
)
I need to convert it to edges, so the directions are combined, looking like this:
(
['A','B',5],
['A','C',4],
['B','C',2],
)
I'm thinking there should be a very pythonic way to do this, but not sure what the most elegant way is.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一种使用字典的方法,其中键是按排序顺序的弧的末端:
Here's an approach using a dictionary where the keys are the ends of the arc in sorted order: