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.

Say I have the following codes:

SortedDictionary<int,string> test = new SortedDictionary<int, string> ( );
test.Add ( 1, "one" );
test.Add ( 3, "three" );
test.Add ( 7, "seven" );
test.Add ( 8, "eight" );
int key = GetFirstKeyGreaterThan ( test, 3 ); // expects to get 7
int key2 = GetFirstKeyGreaterThan ( test, 6 ); // expects to get 7

Is there an easy way to implement GetFirstKeyGreaterThan method? I know we can use GetEnumerator method and call MoveNext after we reach the key of 3, but it would be an O(n) operation.

I do not want to use SortedList because I need an O(log n) for key insertion and removal.

share|improve this question
You probably could try sorted collection instead of dictionary stackoverflow.com/questions/13131167/… – Felix Oct 29 '12 at 23:44
1  
The title of your question refers to SortedDictionary, while the code contains Dictionary. There may not be a solution to do what you'd like using either of those two, but it would help us answer if you'd clarify which one you mean. – MvanGeest Oct 29 '12 at 23:45
Thanks @MvanGeest, you are right. I have edited the codes. – user154321 Oct 30 '12 at 0:59

1 Answer

Dictionary has no concept of order of the keys. Without a concept of order, the problem can only be solved by examining all keys, which as you note is O(n).

However, according to MSDN SortedDictionary is O(log n) for insertion and removal operations, while still offering O(log n) retrieval.

SortedDictionary has faster insertion and removal operations for unsorted data: O(log n) as opposed to O(n) for SortedList

share|improve this answer
That sounds a lot like a hashmap for Dictionary and a smart tree (something like red/black) for SortedDictionary under the hood, which makes a lot of sense. – Jasper Oct 29 '12 at 23:52
@Jasper: MSDN says it uses "a binary search tree". – Eric J. Oct 29 '12 at 23:55
Ah yes, I should have said a smart binary search tree (something like red/black). – Jasper Oct 30 '12 at 0:00
1  
@EricJ.: thanks, but as I know SortedDictionary offers O(log n) retrieval only if the the dictionary contains the asked key. I need to get the closest greater key if the dictionary does not contain the asked key. – user154321 Oct 30 '12 at 3:10

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.