我似乎找不到可以告诉我以下内容的有效来源,我正在尝试了解不同的 Python 技术,谁能解释这些代码行,并可能显示它们的等效内容?
shortest_path = {initial: (None, 0)}
next_destinations = {node: shortest_paths[node] for node in shortest_paths if node not in visited}
current_node = min(next_destinations, key=lambda k: next_destinations[k][1])
作为参考,一个节点是一个字符串。
跃然一笑
相关分类