周期python有向图中目标到根的最短路径

2024-09-27 00:23:12 发布

您现在位置:Python中文网/ 问答频道 /正文

我想找出从goal到{}的最短路径

我对root的输入是{'4345092': ['6570646', '40586', '484']} 我对goal的输入是{'886619': ['GOAL']}

我对path_holder的输入是一个输入,但它被转换为dct,并用于此函数。我对while循环感到困惑,因为它为我创建了向后的路径。现在我不能让q打印,因为这部分代码没有运行。dct基本上是一个包含循环的有向图表示。我似乎不知道如何从GOAL开始,到root节点结束。我想知道是否有人能帮我解决这个问题谢谢!在

dct公司:

dct = 
{ '612803266': ['12408765', '46589', '5880', '31848'], 
  '8140983': ['7922972', '56008'],
  '7496838': ['612803266'], 
  '1558536111': ['7496838'], 
  '31848': ['DEADEND'], 
  '1910530': ['8140983'], 
  '242010': ['58644', '886619'], 
  '727315568': ['DEADEND'], 
  '12408765': ['DEADEND'], 
  '56008': ['DEADEND'], 
  '58644': ['DEADEND'], 
  '886619': ['GOAL'], 
  '40586': ['931', '727315568', '242010', '1910530'], 
  '5880': ['1558536111'], 
  '46589': ['DEADEND'], 
  '6570646': ['2549003','43045', '13830'],
  '931': ['299159122'],
  '484': ['1311310', '612803266'],
  '1311310': ['DEADEND'],
  '7922972': ['DEADEND']
  }

我的职能:

^{pr2}$

Tags: path函数代码路径节点公司rootdct
1条回答
网友
1楼 · 发布于 2024-09-27 00:23:12

只要找到路径,然后反转它们。在

更新:在结束条件的“死区”和“目标”中添加“[]”。在

import copy as cp

DCT = {...}  # You already know what goes here. 

FOUND_PATHS = []            # In case of more than one path to GOAL.
FOUND_REVERSE_PATHS = []

COUNTER = len(DCT)

def back_track(root, target_path = [], counter=COUNTER):
    """
    @param root: DCT key.
    @type root: str.

    @param target_path: Reference to the path we are constructing.
    @type target_path: list.

    """
    global FOUND_PATHS

    # Avoiding cycles.
    if counter == 0:
        return

    # Some nodes aren't full generated.
    try:
        DCT[root]
    except KeyError:
        return

    # End condition.
    if DCT[root] == ['DEADEND']:
        return
    # Path found.
    if DCT[root] == ['GOAL']:
        FOUND_PATHS.append(target_path)             # The normal path.
        reverse_path = cp.copy(target_path)
        reverse_path.reverse()
        FOUND_REVERSE_PATHS.append(reverse_path)     # The path you want.
        return

    for node in DCT[root]:
        # Makes copy of target parh and add the node.
        path_copy = cp.copy(target_path)
        path_copy.append(node)
        # Call back_track with current node and the copy 
        # of target_path.
        back_track(node, path_copy, counter=(counter - 1))

if __name__ == '__main__':
    back_track('4345092')
    print(FOUND_PATHS)
    print(FOUND_REVERSE_PATHS) 

相关问题 更多 >

    热门问题