Tagged Questions
The sorteddictionary tag has no wiki summary.
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
827 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 = ...
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
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
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 ...
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
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
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
91 views
Python dictionary with lookup that returns an iterator
Something I miss about C++ std::map (which is a sorted dictionary) is that looking up a key returns an iterator pointing to the correct location in the map. This means you can lookup a key and then ...
2
votes
2answers
117 views
Python 2.6 TreeMap/SortedDictionary?
Is there a built-in sorted dictionary implementation in Python 2.6, or are hashtables the only kind?
Clarifications:
I'm asking about sorted dictionarys, not ordered dictionaries!
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 ...
2
votes
4answers
192 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
490 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
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
533 views
vb.net using SortedDictionary as combobox datasource
I have a combobox which i am binding to a sortedDictionary list, so it displays in ascending order. My question is, I need to display "--Select--" as the first option. Is there any way to either:
1) ...
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
487 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
2answers
129 views
Creating dictionary from a list of special characters
I'm working on this small script: basically it's mapping the list elements (with special characters in it) to its index to create a dictionary.
#!/usr/bin/env python
#-*- coding: latin-1 -*-
ln1 = ...
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
3answers
497 views
SortedDictionary behavior
I'm using a SortedDictonary(Of String, String) in my application, and I experience a strange sorting behavior. Consider the following code example:
Dim Dic As New SortedDictionary(Of String, String)
...
0
votes
2answers
180 views
Synchronization of SortedDictionary.iteri using readlock and writelock
let info = new SortedDictionary<string, string>
...
Thread A
--------
info.Add("abc", "def")
Thread B
--------
info
|> Seq.iteri (fun i value -> ...
Where do I place the readLock when I ...
0
votes
2answers
855 views
SortedDictionary (C#)- change value
In a SortedDictionary is it possible to change the value of an item ?