Find the longest path in a graph?

Adjacency matrix of graph is given to us. Now we need to find out the longest path between two nodes. Input: Adjacency matrix of the graph, source node and destination node. Output: Longest path between source node and destination node.

2 commentaires

Matt J
Matt J le 29 Oct 2012
Modifié(e) : Matt J le 29 Oct 2012
Who is "we"? If you mean you and your classmates, show us your code and where in it you are stuck.
Walter Roberson
Walter Roberson le 29 Oct 2012
If there are any cycles then the longest path is infinite.

Connectez-vous pour commenter.

Réponses (2)

Massimo Zanetti
Massimo Zanetti le 9 Oct 2016

3 votes

Generally this is NP-hard problem. However, for DAGs (directed acyclic graphs) there is one clever way to solve the problem. It is called "topological sorting". See details here or elsewhere in google: https://en.wikipedia.org/wiki/Topological_sorting
Ivan
Ivan le 14 Déc 2017

1 vote

Try to invert signs of weight coefficient and calculate shortest path with built-in shortestpath function. It will be the longest path for initial weights.

1 commentaire

MICHAEL MONT-ETON
MICHAEL MONT-ETON le 29 Nov 2020
Ivan, Thanks for the tip. It is useful for finding collection of independent paths.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Networks dans Centre d'aide et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by