Tarjan's implementation of Dijkstra's algorithm

Let's talk about algorithms!

Moderator: Board moderators

Post Reply
porfiry czarnecki
New poster
Posts: 5
Joined: Wed Feb 04, 2004 4:58 pm
Location: Poland, Gliwice

Tarjan's implementation of Dijkstra's algorithm

Post by porfiry czarnecki »

Hello,

I have problem with implementation of algorithm for the shortest path in weighted graph, where complexity depends also on the maximum weight of the edges. In Cormen's 'Introduction to algorithms' I found, that Ahuja, Mehlhorn, Orlin and Tarjan described it in their 'Faster algorithms for the shortest path problem', but I can't get this book.

Specification says:
"On a network with n vertices, m edges, and nonnegative integer arc costs bounded by C, a one-level form of radix heap gives a time bound for Dijkstra's algorithm of O(m + n log C)."

Could anybody write me sth about this implementation or give an url of helpful web page?
huynl
New poster
Posts: 1
Joined: Thu Aug 19, 2004 6:26 am

Post by huynl »

There's some information about radix heap here:

http://ocw.mit.edu/OcwWeb/Sloan-School- ... ourseHome/
Post Reply

Return to “Algorithms”