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?
8
votes
5answers
829 views
LINQ into SortedList
I'm a complete LINQ newbie, so I don't know if my LINQ is incorrect for what I need to do or if my expectations of performance are too high.
I've got a SortedList of objects, keyed by int; SortedList ...
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 ...
3
votes
2answers
657 views
I have a sorted list of key/value pairs, and want to find the values adjacent to a new key
I have a list of key/value pairs (probably will be using a SortedList) and I won't be adding new values.
Instead I will be using new keys to get bounding values. For example if I have the ...
2
votes
5answers
111 views
In Python, how do you conserve grouping when you sort by one value and then another?
Data looks like this:
Idx score group
5 0.85 Europe
8 ...
1
vote
1answer
79 views
C# Sorting Objects By A Value
I want to hold a list of CollidableActor objects, sorted by their property ".Position.X".
I am wondering on what would be the quickest (most efficient) method of doing this. At first I was thinking ...