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?
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
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
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
993 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
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
174 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
837 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 ...
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
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
416 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
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 ...
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
76 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
133 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
4answers
398 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
346 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
802 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
2answers
251 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
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
2answers
205 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
696 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
3answers
798 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
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 ...
1
vote
5answers
2k 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 how many occurrences ...
0
votes
2answers
42 views

SortedList with value and simplified loops with lambda

I have a block of codes here: SortedList<char, int> alpha = new SortedList<char, int>(); List<string> A = new List<string>(); alpha.OrderByDescending(x => x.Value); foreach ...
0
votes
1answer
37 views

Bind a GridControl to a SortedList

I am trying to have a table (a DevExpress GridControl in particular) be bound to a SortedList. I want the first column of the table to be bound to the Key of the SortedList and the second column to ...
0
votes
2answers
52 views

Correct Collection to use for ordered collection

I have a collection, That needs to be ordered in the order it is created. But then at any time The User can change the order (ie move the 4th item to the first postion) Is there any Collections with ...
0
votes
2answers
53 views

C# sortedList shuffle

I'm fairly new to C# and trying to create a mp3-player. I'm using a sortedList for the playlist (song name as Key and filepath as Value), but I'm not sure how I can randomize the list order for the ...
0
votes
0answers
67 views

Binding SortedList to DataGridView with Keys as RowHeaders (C#)

I have a class like public class Entry{ public short value1{get ; set ;} public short value2{get; set; } } This class is nested in a SortedList: //<snip> ...
0
votes
1answer
77 views

Which is the best way to find if a key exists in C# SortedList?

Which is the best way to find if a key exists in C# SortedList? The question is quite clear, I have a SortedList represents an associated array. Both key and values are string. I'm thinking of ...
0
votes
1answer
115 views

SortedList, DropDownList (.NET Framework 2.0), and DropDownList's sort order not same as the SortedList; midnight blues [closed]

SortedList<string, MyObject> myObjects = new SortedList<string, MyObject>(); foreach (SecondObjectType secondObjectType in Repository<SecondObjectType> ...
0
votes
2answers
189 views

split SortedList to multiple lists or arrays [closed]

Possible Duplicate: How to split an array into a group of n elements each? I believe I oversimplified this question so I am editing it a bit. From within a .NET 3.5 console application I ...
0
votes
2answers
251 views

Hide SortedList's .Add method vs using another method name with base.Add

I have a custom class that is basically a SortedList with a few extra properties and methods. I would like to do some additional processing when a new key/value pair is added (i.e when the .Add method ...
0
votes
2answers
166 views

C# 4.0 - 3 value pairs (possibly more). Sort based on values

This is a tough one to phrase as a search query and I'm having no luck. And the more I think about it, it is more a logic question than a syntax one. However I am a newby to C# (8 years php) and I am ...
0
votes
3answers
191 views

Efficient Method for Creating CSV String from Lists/SortedLists C#?

I have an application which implements Asynchronous SOAP. Every 50-100ms I will receive data which is converted into a SortedList<double,double> object. I also have a predefined ...
0
votes
3answers
346 views

Comparing arraylist c#

in c# if i have an arraylist populated like (ID, ITEMQUANTITY), and i would like to compare them by ID, how would i do that? I mean, i need to customize it so that i can compare it by the first value ...
0
votes
4answers
462 views

Meh, C# SortedList has no .Find

Silly if you ask me. But this message is here because I will assume (probably correctly) that I am the silly one, not Microsoft. So... is there something I'm missing? Why didn't they include a "Find" ...
-1
votes
2answers
161 views

Help me with datagrid with sortedlist

i'm need charge a one sortedlist in datagrid WPF. But i don't know it. Someone may help me please? My SortedList is : SortedList<decimal,string> date = new SortedList<decimal,string>(); ...