I'm programming in C#.NET. When implementing Dijkstra's Algorithm, it is common to use a priority queue or heap to work out which node to visit next. Unfortunately, C# does not provide these data structures natively. I can't and I don't want to implement Dijkstra on array (that's slower). What would be the best choice?
closed as not constructive by L.B, ChrisF♦, Soner Gönül, kabuko, talonmies Jan 15 at 18:29
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Starting with .NET 2.0 you can use |
|||||||||||||||
|
|
There are several priority queue implementations for .NET available including this one http://www.itu.dk/research/c5/ PowerCollections provides a good number of collection classes not present in the base class library, though the comment in this answer http://stackoverflow.com/a/102434/141172 suggests that the priority queue in PowerCollections is not optimally implemented. |
|||
|
|
|
You can check out this link. It supports implementing the shortest-path algorithm with C# |
|||
|
|
priority queue or heapand c# ? – L.B Jan 14 at 22:10