Shortest Path with Single Source Node and Multiple Target Nodes

1 回表示 (過去 30 日間)
Kasturi Rangan
Kasturi Rangan 2020 年 4 月 28 日
回答済み: ag 2024 年 9 月 15 日
Hi,
There is node from A to H and used shortestpath fn to find the short path
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance)
plot(c,'EdgeLabel',c.Edges.Weight)
[p,d]=shortestpath(c,"A","H")
got this
c =
digraph with properties:
Edges: [13×2 table]
Nodes: [8×1 table]
p = 1×5 string
"A" "C" "D" "G" "H" *
d = 13
But i need to have results from A to B , A to C ,.... till A to H. I have used shortestpathtree but gives only edges and nodes with distance. I need result like above one 'p' with multiple target nodes (with single source node). is that for loop helpful? else any other way.
Thanks in advance.

回答 (1 件)

ag
ag 2024 年 9 月 15 日
Hi Kasturi,
To get a similar result from "shortestpathtree", as obtained by using the "shortestpath" function, please set the "OutputForm" input argument to "Cell". The following code snippet illustrates the appropriate syntax:
a=["A" "A" "A" "B" "B" "C" "C" "D" "D" "E" "F" "F" "G"];
b=["B" "C" "D" "D" "F" "D" "E" "E" "G" "G" "G" "H" "H"];
distance=[3 2 5 2 13 2 5 4 3 6 2 3 6];
c=digraph(a,b,distance);
plot(c,'EdgeLabel',c.Edges.Weight)
[p, d] = shortestpathtree(c, "A",'OutputForm','cell')
p = 8x1 cell array
{["A" ]} {["A" "B" ]} {["A" "C" ]} {["A" "C" "D" ]} {["A" "B" "F" ]} {["A" "C" "E" ]} {["A" "C" "D" "G" ]} {["A" "C" "D" "G" "H"]}
d = 1×8
0 3 2 4 16 7 7 13
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
Hope this helps!

カテゴリ

Help Center および File ExchangeGraph and Network Algorithms についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by