Tagged Questions
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 ...
3
votes
2answers
651 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 ...
1
vote
2answers
1k views
Get last element in a SortedDictionary
I see this question.
How can I get the last element in a SortedDictionary in .Net 3.5.
1
vote
1answer
809 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
2answers
852 views
SortedDictionary (C#)- change value
In a SortedDictionary is it possible to change the value of an item ?