Switch to full style
Codes, tips and tricks,discussions and solutions related to C#
Post a reply

Dijkstra ( Shortest Path )

Mon May 21, 2007 5:12 pm

Dijkstra program that get shortest path between two nodes in network


Attachments
Dijkstra.rar
Program that get the shortest path between two nodes in network
(37.2 KiB) Downloaded 3938 times

Re: Dijkstra ( Shortest Path )

Sat Apr 11, 2009 6:13 pm

Hi, i need it.. how can I get it? :beg:

Re: Dijkstra ( Shortest Path )

Mon Apr 20, 2009 1:49 pm

Dijkstra's algorithm solves the single-source shortest-path problem when all edges have non-negative weights. It is a greedy algorithm and similar to Prim's algorithm. Algorithm starts at the source vertex, s, it grows a tree, T, that ultimately spans all vertices reachable from S. Vertices are added to T in order of distance i.e., first S, then the vertex closest to S, then the next closest, and so on. Following implementation assumes that graph G is represented by adjacency lists.

For more details visit the link below:

http://www.personal.kent.edu/~rmuhamma/ ... aAlgor.htm

Re: Dijkstra ( Shortest Path )

Mon Apr 20, 2009 1:57 pm

Well.. I know what dijkstra's algorithm is.. but I need some c# code for the shortest path between routers in a LAN.. or something like that.. a program that sends packets to the net and can recognise the distance between two points, and sharing the data can get to the "x" router with the shortest path..
Could someone hep me? :beg:
(sorry my very bad english :) I'm italian)

Post a reply
  Related Posts  to : Dijkstra ( Shortest Path )
 Dijkstra ( Shortage Path )     -  
 shortest path algorithm java     -  
 Java code to draw shortest path tree     -  
 Dijkstra Algorithm     -  
 SHORTEST JOB FIRST     -  
 Shortest Job First Preemptive algorithm     -  
 get include path     -  
 get Folder path and size     -  
 draw General Path     -  
 return file path after encoded using UTF-8 from URL     -