Tagged Questions
21
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 ...
5
votes
1answer
3k views
SortedList vs. SortedDictionary vs. Sort()
This is a continuation of questions like this one.
Is there known guidlines for tweek the performance. I don't mean gains in big-O, just saving some linear time.
For example, how much does ...
4
votes
6answers
547 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
2answers
91 views
How to remove every second element of a SortedDictionary as fast as possible?
I've to remove every second element from a SortedDictionary as fast as possible. The dictionary (SortedDictionary<string, List<string>>) can have up to 20'000 elements. So I came up with ...
3
votes
3answers
190 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
3answers
488 views
What's the equivalent to a .NET SortedDictionary, in Java?
If .NET has a SortedDictionary object ... what is this in Java, please? I also need to be able to retrieve an Enumeration (of elements), in the Java code .. so I can just iterate over all the keys.
...
1
vote
4answers
211 views
Is LINQ Where extension method optimized for SortedDictionary?
Folks,
If I call the LINQ Where extension method, does it take advantage of the sorting in SortedDictionary or does it traverse each KVP and make the comparison? Is there an advantage to using ...
1
vote
1answer
810 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
129 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
90 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
211 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
852 views
SortedDictionary (C#)- change value
In a SortedDictionary is it possible to change the value of an item ?