我正在尝试在 Python 中完成以下逻辑操作,但遇到了内存和时间问题。因为,我对 python 很陌生,所以关于如何以及在哪里优化问题的指导将不胜感激!(我明白下面的问题有些抽象)
import networkx as nx
dic_score = {}
G = nx.watts_strogatz_graph(10000,10,.01) # Generate 2 graphs with 10,000 nodes using Networkx
H = nx.watts_strogatz_graph(10000,10,.01)
for Gnodes in G.nodes()
for Hnodes in H.nodes () # i.e. For all the pair of nodes in both the graphs
score = SomeOperation on (Gnodes,Hnodes) # Calculate a metric
dic_score.setdefault(Gnodes,[]).append([Hnodes, score, -1 ]) # Store the metric in the form a Key: value, where value become a list of lists, pair in a dictionary
然后根据这里提到的标准sorting_criterion对生成的字典中的列表进行排序
我的问题/问题是:
1)有没有比使用for循环进行迭代更好的方法来解决这个问题?
2)解决上述问题的最优化(最快)方法应该是什么?我应该考虑使用字典以外的其他数据结构吗?或者可能是文件操作?
3)由于我需要对这个字典中的列表进行排序,它有 10,000 个键,每个键对应于 10,000 个值的列表,内存需求很快变得巨大,我用完了它。
3) 有没有办法将排序过程集成到字典本身的计算中,即避免单独循环排序?
任何输入将不胜感激!谢谢 !