Shortest Path

Schrolil

New member
Joined
May 31, 2005
Messages
1
Programming Experience
1-3
I have to implement a shortest Path algorithm in vb.net, from a given start Node to a given end Node. As a result, I should give the path containing the edges that build the path.

public function shortestPath(byval from as Node, byval to as Node) as Path

I know the implementation in Java with a SortedSet to have the paths listed with their costs, but I do not know how to implement that in vb.net. Has there anybody an Idea? Please help, thanks.
 
Back
Top