Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
4  
Why the "close" votes? This is a good, answerable question... – dasblinkenlight Jan 14 at 22:09
What does google say when you search priority queue or heap and c# ? – L.B Jan 14 at 22:10
3  
@dasblinkenlight No OP doesn't show any effort. It is easy to find zillions of implementations with a quick search. Also an answerable question doesn't make it good to fit to SO. – L.B Jan 14 at 22:12
I would implement a simple priority queue yourself in c# based on an interface and code your dijkstras to that interface. Then create a new implementation of that interface using a HEAP. – Nick Bray Jan 14 at 22:13
The "best" data structure might be a Fibonacci heap, but I don't know what that has to do with C# specifically. – Mehrdad Jan 14 at 22:18

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.

3 Answers

up vote 1 down vote accepted

Starting with .NET 2.0 you can use SortedDictionary<K,V> to implement your priority queue. It's Keys property returns an ordered collection. You can extract its first item to get the key of the entry representing your "next best" edge. The V needs to be a List<T>, where T is the element that you store in your Dijkstra's queue.

share|improve this answer
1  
@Patryk myDict.Keys.First() gets you the key to the list; remove its first item, then remove the key if the list is empty. – dasblinkenlight Jan 14 at 22:54
can I find somewhere what is it it's time complexity? (First() method) – Patryk Jan 14 at 22:55
1  
@Patryk Yes, it's mentioned in the docs (indirectly, though): "The SortedDictionary<TKey, TValue> generic class is a binary search tree with O(log n) retrieval". The retrieval of the first item is O(1), but the insertion is O(log n). – dasblinkenlight Jan 14 at 22:57
Thank you very much :) Insertion with O(log n) is still much better than finding smallest value in an array O(n). – Patryk Jan 14 at 23:01
what about removing 1st element complexity? I'm not sure how it work inside c#, but I've read in their documentation that it is O(n). What do you think about it? – Patryk Jan 15 at 10:05
show 1 more comment

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.

share|improve this answer

You can check out this link. It supports implementing the shortest-path algorithm with C# Generics

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.