tags:

views:

336

answers:

1

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?

+2  A: 

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#).

Will Vousden