Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 python 和 igraph 中,我有很多高度的节点。我总是需要按照权重的顺序考虑节点的边缘。每次访问同一个节点时对边进行排序很慢。有没有办法说服 igraph 总是以权重排序的顺序给出节点的边缘,也许是通过一些预处理?
据我了解,您将无法从 Python 访问 C 后端。将排序的边存储在顶点的属性中g.vs["sortedOutEdges"]怎么样?
g.vs["sortedOutEdges"]