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
2answers
110 views

Why does sortedDictionary need so much overhead?

long b = GC.GetTotalMemory(true); SortedDictionary<int, int> sd = new SortedDictionary<int, int>(); for (int i = 0; i < 10000; i++) { sd.Add(i, i+1); } long a = ...
4
votes
3answers
199 views

when should I use a sorteddictionary instead of a dictionary

As I wrote in some of my last posts I am still quite new to the c# world so it comes that I wrote small benchmark to compare Dictionary, Hashtable, SortedList and SortedDictionary against each other. ...
4
votes
6answers
549 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 ...
4
votes
1answer
149 views

What's the easiest way to fill gaps in a list of numbers?

I'm having some trouble explaining the question in a single line for the title, but hopefully this description will provide you with enough insight to fully understand my question: I have a few ...
3
votes
3answers
191 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 ...
3
votes
2answers
655 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
4answers
193 views

C# SortedDictionary producing unusual results

I'm working with a SortedDictionary where the key is integer and value is string. SortedDictionary<int,string> dic = new SortedDictionary<int,string>(); Now say I add values like ...
2
votes
1answer
129 views

Implementation of Dictionary where equivalent contents are equal and return the same hash code regardless of order of insertion

I need to use Dictionary<long, string> collections that given two instances d1 and d2 where they each have the same KeyValuePair<long, string> contents, which could be inserted in any ...
2
votes
3answers
430 views

Using SortedDictionary TakeWhile returns empty

The TakeWhile extension method has the following comment in its tooltip: "the element's index is used in the logic of the predicate function". Note that this tooltip is not visible in the normal ...
1
vote
1answer
78 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 ...
1
vote
1answer
103 views

C# SortedDictionary producing unusual results - Mk2

I don't think I posted enough detail in the previous question and people seemed to stop responding so I'm reposting as we need to know why this problem is happening I'm working with a ...
1
vote
1answer
111 views

C# Datastructure with SortedDictionary() and node.Next() functionality?

How to construct/obtain a datastructure with the following capabilities: Stores (key,value) nodes, keys implement IComparable. Fast (log N) insertion and retrieval. Fast (log N) method to retrieve ...
1
vote
4answers
211 views

How to find point between two keys in sorted dictionary

I have a sorted dictionary that contains measured data points as key/value pairs. To determine the value for a non-measured data point I want to extrapolate the value between two known keys using a ...
1
vote
3answers
195 views

What is Ruby (1.8.7) analog to SortedDictionary in C#/.NET?

I need to hold values in sorted hash in ruby (1.8.7). What data structed will fit the best?
1
vote
2answers
170 views

How do I divide a list into groups and store the indices?

I have a list box which holds, say, 6 values. Using buttons it's possible to insert new items into the list box. I can move all of these items up and down using other buttons I've added. For the ...
1
vote
2answers
1k views

How to use custom IComparer for SortedDictionary?

I am having difficulties to use my custom IComparer for my SortedDictionary<>. The goal is to put email addresses in a specific format (firstnam.lastname@domain.com) as the key, and sort by last ...
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
813 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 ...
1
vote
1answer
490 views

How do I use Eval() to reference values in a SortedDictionary in an asp Repeater?

I thought I was clever to switch from the memory intensive DataView to SortedDictionary as a memory efficient sortable data structure. Now I have no idea how get the key and value out of the ...
0
votes
0answers
70 views

C# Dictionary + sort vs SortedDictionary [closed]

Possible Duplicate: SortedList vs. SortedDictionary vs. Sort() Why would you use SortedDictionary instead of Dictionary? If you need to sort the Dictionary you can always use LINQ to sort ...
0
votes
3answers
130 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
2answers
414 views

Sorted Dictionary - C#

I'm trying to figure out how to create a sorted dictionary where the key is sorted in a non-alphabetical manner. Is there a way I can define the way I want it to sort? For example, the keys might be ...
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
158 views

Most Efficient way to find the index of an item in a SortedDictionary

I am using a sorted dictionary to maintain a list of items, of which I regularly need to monitor the state of the top x items. Every time I update an item, I'd like a quick way of figuring out 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
855 views

SortedDictionary (C#)- change value

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