I'm wondering how to get the next element in a C# sorted list. SO far I've come up with the following code:

SortedList<int, Bla> mList;

Bla someElement = mList[key];
Bla next        = mList[mList.Keys[mList.IndexOfKey(key) + 1]];

I'm not sure if that's the smartest way to do it ;-)

link|improve this question

78% accept rate
Specify the types exactly. – pst Nov 11 '11 at 7:18
What is the type of mList? – ChrisWue Nov 11 '11 at 7:18
1  
foreach (KeyValuePair<int, Bla> entry in mList){ ... } ???? – Polity Nov 11 '11 at 7:22
2  
Use IndexOfKey and GetByIndex. – Hans Passant Nov 11 '11 at 7:23
1  
@HansPassant If you post that as an answer I'll upvote it. Everyone else here seems incapable of answering the question that was actually asked. – Robert Harvey Nov 11 '11 at 7:25
show 2 more comments
feedback

3 Answers

up vote 3 down vote accepted

Since you can access a SortedList by index (see the Remarks section), I'd recommend using the following:

var index = mList.IndexOfKey(key);
var first = mList.Values[index];
var second = mList.Values[index + 1];

This will work in the same O(log n) as a single lookup.

Here's also the LINQ way to do it:

var items = mList.SkipWhile(m => m.Key != key).Select(m => m.Value).Take(2).ToList(); // Avoid double-enumeration by calling ToList
var first = mList[0];
var second = mList[1]; 

This will only enumerate once. It will execute in O(n).

link|improve this answer
That actually did the job. Thank's a lot! – Boris Nov 11 '11 at 7:43
feedback

SortedList can be accessed by both key and index

var IndexOfKey = mList.IndexOfKey(key);

Increment the index,

IndexOfKey++; //Handle last index case

Get the next item by index.

var nextElement = mList.GetByIndex(IndexOfKey);
link|improve this answer
Does this relate to SortedList<int, Bla> ? SortedList under Generics doesn't hv GetByIndex unless i misinterpreted something – V4Vendetta Nov 11 '11 at 7:34
@V4Vendetta I think so – parapura rajkumar Nov 11 '11 at 7:37
2  
Nope, SortedList does not have GetByIndex... – Boris Nov 11 '11 at 7:41
@Boris... I thought you were using SortList – parapura rajkumar Nov 11 '11 at 7:42
I hope the up-votes are not since HansPassant suggested this in the comments – V4Vendetta Nov 11 '11 at 7:48
show 5 more comments
feedback

Use enumerator:

 IDictionaryEnumerator iterator = mList.GetEnumerator();
 iterator.MoveNext();
 Bla first = iterator.Value;
 iterator.MoveNext();
 Bla next = iterator.Value;
link|improve this answer
But the OP i thought already had an element for which he wanted to find next – parapura rajkumar Nov 11 '11 at 7:38
That's true. I'd like to find an element in the list (preferably very fast) and then iterate from there... – Boris Nov 11 '11 at 7:40
This gets the first 2 items, and doesn't even bother looking at the key. – Scott Rippey Nov 11 '11 at 7:41
feedback

Your Answer

 
or
required, but never shown

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