Tagged Questions

22
votes
2answers
4k views

What's the difference between SortedList and SortedDictionary?

Maybe a silly question, but is there any real practical difference between a SortedList and a SortedDictionary? Are there any circumstances where you would specifically use one and not the other?
7
votes
2answers
3k views

When to use a SortedList<TKey, TValue> over a SortedDictionary<TKey, TValue>?

This may appear to be a duplicate of this question, which asks "What’s the difference between SortedList and SortedDictionary?" Unfortunately, the answers do nothing more than quote the MSDN ...
4
votes
6answers
577 views

How do I get previous previous key from SortedDictionary?

I have dictionary contains key value pair. SortedDictionary<int,int> dictionary=new SortedDictionary<int,int>(); dictionary.Add(1,33); dictionary.Add(2,20); dictionary.Add(4,35); I want ...
3
votes
3answers
207 views

When SortedDictionary is enumerated does it return KeyValuePairs in expected order?

When I have SortedDictionary<TK, TV> in .NET and I want to enumerate it as ICollection<KeyValuePair<TK, TV>> does it enumerate in expected order? That is KeyValuePair<TK, TV> ...
3
votes
2answers
1k views

.NET SortedDictionary But Sorted By Values

I need a data structure that acts like a SortedDictionary<int, double> but is sorted based on the values rather than the keys. I need it to take about 1-2 microseconds to add and remove items ...
1
vote
1answer
840 views

Setting the i-th value of a SortedDictionary

I need to set the value of an element in my sortedDictionary, accessed by index. I.e. sortedDictionary.Values[index] = value; // compile error Note that the following is incorrect because it's ...
0
votes
3answers
138 views

Get a key equal to an item from SortedDictionary?

Is there any way to retrieve a key from a SortedDictionary that is equal to a given object? To illustrate, lets say I create a dictionary that has a fairly memory-heavy, immutable key type: var ...
0
votes
0answers
91 views

A quick way to map unordered list of longs to buffer location?

I have a large number of points (indexed by long) that are processed by multiple threads and I'm using a buffer to hold the output results in order. As the number of points processed is huge, what ...
0
votes
2answers
216 views

SortedDictionary add one SortedDictionary into another

I have a requirement where I already have an existing SortedDictionary<string, int>. Now I am creating a different SortedDictionary and like to add this in the first one . How to do it?
0
votes
2answers
871 views

SortedDictionary (C#)- change value

In a SortedDictionary is it possible to change the value of an item ?