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 see this question.

How can I get the last element in a SortedDictionary in .Net 3.5.

share|improve this question

2 Answers

up vote 6 down vote accepted

You can use LINQ:

var lastItem = sortedDict.Values.Last();

You can also get the last key:

var lastkey = sortedDict.Keys.Last();

You can even get the last key-value pair:

var lastKeyValuePair = sortedDict.Last();

This will give you a KeyValuePair<TKey, TValue> with Key and Value properties.

Note that this will throw an exception if the dictionary is empty; if you don't want that, call LastOrDefault.

share|improve this answer
These methods likely trigger enumeration. I wonder if there is any way to get the last element (or element from any position index) without enumeration? Since the SortedDictionary is sorted into a tree, it could be in theory possible? – Roland Pihlakas Sep 25 '12 at 21:21
@RolandPihlakas: In theory, yes. In practice, I don't think so. – SLaks Sep 27 '12 at 2:35
For someone from a C++ background, this is hard to accept. Enumerating through the entire sorted dictionary just to get the last element is hopelessly inefficient. Are there more capable C# Collection libraries around? – avl_sweden Feb 26 at 18:16
@avl_sweden: itu.dk/research/c5 – SLaks Feb 26 at 18:22

You can use SortedDictionary.Values.Last();

or if you want the key and the value

SortedDictionary.Last();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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