Reputation: 11
I need display a node graph in c# and find the short possible path(figure 10 of http://msdn.microsoft.com/en-us/library/aa289152(VS.71).aspx). What API can i use to draw out all the node and link? Anyone can advise?
Upvotes: 1
Views: 4866
Reputation: 65
Note - if you directly follow the link in Will's answer you get to the correct website. If you ask Google about QuickGraph the first link is to the CodeProject site which is deprecated. Make sure you go to the CodePlex site (Will links directly to it).
Upvotes: 0
Reputation: 33348
If you're using WPF, then Graph# sounds like an ideal solution for graph visualization. As for finding the shortest path between two nodes, you'll probably want to use Dijkstra's algorithm for this, which is implemented by QuickGraph (which itself is used by Graph#).
Upvotes: 5