Tagged Questions
The sortedlist 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?
13
votes
7answers
450 views
Is there an indexable sorted list in the Java.util package?
I'm looking for a data structure in the java.util package. I need it to meet the following requirements:
The number of elements is (theoretically) unbounded.
The elements are sorted in an ascending ...
10
votes
4answers
289 views
Get random sample from list while maintaining ordering of items?
I have a sorted list, let say: (its not really just numbers, its a list of objects that are sorted with a complicated time consuming algorithm)
mylist = [ 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 ,9 , 10 ]
...
10
votes
3answers
3k 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 value
These seem ...
8
votes
5answers
822 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 ...
6
votes
5answers
302 views
Why does Delphi's TStringList.InsertObject() method thrown an Exception if the list is Sorted?
In Delphi 6 if you try to insert an object into a TStringList that is sorted (Sorted = true) an Exception is thrown warning you that InsertObject() is not allowed on a sorted list. I could understand ...
6
votes
8answers
4k 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?
5
votes
2answers
133 views
C# Linq return SortedList
How can I get Linq in C# to return a SortedList given an IEnumerable? If I can't, is it possible to cast or transform the IEnumerable to a SortedList?
5
votes
4answers
991 views
Re-ordering collection C#
I have a problem which I cant seem to find answer to through searches (either that or I am searching for the completely wrong thing!). I have a list of items called "Top 10" in a sortedlist item that ...
5
votes
3answers
1k views
In C#, is there a kind of a SortedList<double> that allows fast querying (with LINQ) for the nearest value?
I am looking for a structure that holds a sorted set of double values. I want to query this set to find the closest value to a specified reference value.
I have looked at the SortedList<double, ...
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 ...
5
votes
4answers
2k 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.
For cnt As Integer = 1 To 1000000
For Each TempDE In ...
5
votes
2answers
5k views
c# How to sort a sorted list by its value column
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 can do this?
Thanks!
4
votes
2answers
173 views
Making a SortedList readonly
I often have classes exposing lists as ReadOnlyCollection<T>s, i.e.
public class Class
{
List<string> list;
public ReadOnlyCollection<string> TheList
{
get { return ...
4
votes
5answers
830 views
C# faster sorting than SortedList<>
we have a
SortedList<Resource, Resource> resources =
new SortedList<Resource, Resource>(new ResourceIdle());
that we use in our simulation. This list of resources is initialised in ...
4
votes
2answers
597 views
Does ruby have a list type that keeps contents sorted as adds/deletes occur?
I need a datastructure in Ruby that keeps its elements sorted as elements are added or deleted and allows (at least) the ability to pop the first element off the list.
The closest thing I've found in ...
3
votes
6answers
112 views
java constantly sorted list with quick retrieval
I'm looking for a constantly sorted list in java, which can also be used to retrieve an object very quickly. PriorityQueue works great for the "constantly sorted" requirement, and HashMap works great ...
3
votes
2answers
67 views
using linq query to find value that differs from previously found value
Say i have a class that contains these items publicly accessible via properties:
class MyClass
{
int switch1; //0 or 1
int switch2; //0 or 1
int switch3; //0 or 1
}
This class ...
3
votes
4answers
339 views
How to compare generic nodes in a linked list using Comparable?
I am implementing a sorted list using linked lists. My node class looks like this
public class Node<E>{
E elem;
Node<E> next, previous;
}
In the sorted list class I have the add ...
3
votes
3answers
151 views
c# how to make a sortedlist sort reversely? do I have to customize a icomparer?
In a sortedlist queue, queue.value[0] gives the corresponding value of a min key. what if i would like to make that it gives the value of a max key?
Do i have to rewrite the icomparer?
3
votes
3answers
94 views
What is the fastest (insert speed) way to achieve a prioritized collection of arrays in .Net?
I am writing a specific priority queue. Its structure needs to be something as follows:
Priority(<int>) Data(List<Object>)
1 a, b, g, h
3 c, d, j
4 ...
3
votes
3answers
413 views
Java equivalent of C# Sorted List [closed]
Possible Duplicate:
sorted collection in java
I was wondering if Java has its own version of Sorted List, or if I need to create my own. I want the list to automatically update itself if ...
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 ...
3
votes
6answers
1k 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 object quickly given ...
2
votes
1answer
74 views
C# SortedList, getting value by key
I have SortedList in descending order.
public class MyComparer : IComparer<int>
{
public int Compare(int x, int y)
{
if (x.CompareTo(y) > 0)
...
2
votes
3answers
132 views
C# Sorted list: How to get the next element?
I'm wondering how to get the next element in a C# sorted list. SO far I've come up with the following code:
SortedList<int, Bla> mList;
Bla someElement = mList[key];
Bla next = ...
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
396 views
Binary Search Keys of C# SortedList
I need to write some code for linear interpolation and I am trying to figure out the most efficient way to search the Keys of a SortedList for the upper and lower keys that surround my target key.
...
2
votes
2answers
340 views
C# Linq SortedList Filtering into SortedList
I have got some code in which I am doing some weirdness to get information out of a SortedList and back into another SortedList. I do my where clause, then have to individually put all the ...
2
votes
2answers
129 views
WPF combo box weird problem
I am binding a SortedListbox to an WPF combo box. everything was fine. The problem happend when i select the first [only the first] item. The problem is that SelectedValue doesnt change when a new ...
2
votes
4answers
5k 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 and comments.
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
5answers
796 views
C# Sortable collection which allows duplicate keys
I am writing a program to set a sequence in which various objects will appear in report.
The sequence is the Y position (cell) on Excel spreadsheet.
A demo part of code is below.
What I want to ...
1
vote
4answers
196 views
Efficient way to get first value larger than x in a list?
I have two sorted arrays, Haystack and Needles. I need to iterate over Needles, and each time find the first point in Haystack with a value larger than that Needle, in order to perform the next step.
...
1
vote
2answers
358 views
help with sorted list assignment
Hey guys, I'm very close to being done, but can't quite figure out how to tie everything together. I have the separate methods responsible for their particular task, but i feel like my cohesion is ...
1
vote
2answers
250 views
sorting a namevaluecollection
How do I sort a namevaluecollection in alphabetical order? Do I have to cast it to another list first like the sorted list or Ilist or something? If then how do I do that? right now I have all my ...
1
vote
2answers
249 views
Javascript: I need a good data structure to keep a sorted list
This would probably be implemented as a tree or something? My point is it needs to be efficient.
I don't know where to find good implementations of data structures for Javascript for something like ...
1
vote
1answer
360 views
C# sort Listbox, add to a sorted list
I want to sort the elements in C# listbox by some field in the object element.
Is there a method in C# that perform this task? Maybe a function that receives a comparison function as a parameter or ...
1
vote
4answers
1k views
SortedList - VS - List - VS - LinkedList
In my mind it was always there that List is basically implemented using LinkedList, while normal Array is implemented as Contiguous blocks. I always tried to use List because of it is made using ...
1
vote
5answers
388 views
Why is there no SortedList<T> in .NET?
Why is there only a SortedList<TKey, TValue> which looks more like a dictionary, but no SortedList<T> that is actually just a list that is always sorted?
According to the MSDN ...
1
vote
2answers
202 views
Item duplication problem
My goal is to add a insert new value to a column where my column values are as follows
100 * 100
150 * 150
200 * 200
200 * 200
I get the following error:
Item has already been added. Key in ...
1
vote
3answers
361 views
An Efficient data structure for Sorted List
I want to save my objects according to a key in the attributes of my object in a sorted fashion. Later on I'll access these objects sequentially from max key to min key. I'll do some search tasks as ...
1
vote
3answers
695 views
Need sorted dictionary designed to find values with keys less or greater than search value
I need to have objects sorted by price (decimal) value for fast access. I need to be able to find all objects with price more then A or less than B. I was thinkg about SortedList, but it does not ...
1
vote
2answers
397 views
Is there a sorted java collection which handles duplicates?
I need a collection that behaves something like C++ multimap, but I also need to be able to get elements by a range of keys.
1
vote
2answers
204 views
Why is the SortedList(TKey,TValue).Keys property an IList(TKey) rather than a ReadOnlyCollection(TKey)?
The IList<T> interface includes access by index in addition to operations not supported by the SortedList<TKey, TValue>.Keys property such as Add, Remove, and Insert.
A ...
1
vote
2answers
2k views
LINQ from SortedList C#
I'm fairly new to C#, and completely new to LINQ.
I have an existing object of type SortedList, which I would like to filter through using LINQ. However I appear to be having issues with this, ...
1
vote
3answers
790 views
Query SortedList<Object1,Object2> with Linq
I'm a complete begginer with Linq. And I woild like to know, if it is possible to make a query where for a given Class1.Code I get matching Class2.Value.
class Class1()
{
public string Code;
...
1
vote
1answer
141 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 is generally most ...
1
vote
4answers
1k 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 closest point to a given ...