gpt4 book ai didi

algorithm - DAG中所有路径的边积之和

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:42:34 31 4
gpt4 key购买 nike

我有一个带加权边的有向无环图。我的目标是找到“第一个”和“最后一个”级别之间所有路径中的边乘积之和。例如,在这种情况下,这将是 2*3 + 2*1 + 4*2 + 4*4 + 3*3 + 3*1 + 2*2 + 2*4 = 56。在实际图表中,我有20-30 级。有什么有效的方法可以做到这一点吗?

Graph

最佳答案

你可以使用一个简单的DFS来解决这个问题:

    Node s; // starting node
Integer result = 0
Function sumProduct(Node currentNode){
mark currentNode as visited
for each connected node to currentNode which is not visited do

result += edgeCost(currentNode to neighbor) + sumProduct(Neighbor);
end for

return result
}

// call function with the starting node:

sumProduct(s);

关于algorithm - DAG中所有路径的边积之和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30623526/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com