2
votes
2answers
272 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 quot …
1
vote
2answers
63 views
Is there a non-unique-key sorted list generic collection in C#?
I'm a bit surprised by System.Collections.Generic.SortedList, in that
It requires me to use <key, value> instead of <value>(comparer)
It only allows on entry per valu …
3
votes
4answers
124 views
Cycling through a SortedList - Why is this faster?
List1 in the following example is a SortedList(Of MyClass) and contains 251 members.
The first two codeblocks execute in 15.5 seconds.
1:
For cnt As Integer = 1 To 1000000
…
1
vote
1answer
45 views
What is the most efficient method for looping through a SortedList in VB 2008?
The code below shows me (I think) that the "for each" loop is about 10% faster than the "i to n" loop, but the "for each" loop creates 567k in new memory? Is this right? Which way …
2
votes
2answers
629 views
c# How to sort a sorted list by its value column
Hi, i have a generic sorted list "results" with key = some filename and value = boolean.
I would like to sort the list by the boolean entry or value column. does anyone know how i …
0
votes
4answers
892 views
SortedList not sorting on key - VB.NET
Hello
I have a the need for key value pair that I wish to sort so I decided to use a SortedList instead of a HashTable.
I am adding the data in the order below to my SortedList w …
1
vote
4answers
212 views
best data structure for sorted time series data that can quickly return subarrays?
I'm in need of a datastructure that is basically a list of data points, where each data point has a timestamp and a double[] of data values. I want to be able to retrieve the close …
1
vote
4answers
650 views
.NET / C# - Convert List to a SortedList
What is the best way to convert a List to SortedList? Any good way to do it without cycling through it? Any clever way to do it with an OrderBy()?
WRAP UP
Please read all answers …
4
votes
8answers
505 views
Which is faster to find an item in a hashtable or in a sorted list?
Which is faster to find an item in a hashtable or in a sorted list?
3
votes
5answers
532 views
C# Data Structures Question (Which collection to use?)
I need to implement a large collection of Widget objects, each of which contain a unique file path string ("FilePath"). I need to be able to do the following:
Retrieve a Widget …
0
votes
5answers
502 views
How do I perform a FindAll() on an IList<T>? (eg. SortedList.Values)
I'm working on a problem in C# 2.0/.NET 2.0 where I have a Sortedlist and want to search all the "values" (not the "keys") of this SortedList for a certain substring and count up h …
