Tagged Questions

3
votes
2answers
79 views

Get the first sorted element with LINQ? (C#)

First, have a look at this code: Dictionary<int,int> dict = Dictionary<int,int>(); dict[3] = 1; dict[2] = 2; dict[1] = 3; foreach(KeyValuePair<int,int> item in ...
3
votes
6answers
855 views

C# alternative for the C++ STL set<T>

I'm looking for a sorted data structure, that will be similar to the STL set(T). I found SortedList, but it requires (key, val), I'm looking for something like List(string) - only sorted. I found on ...
3
votes
12answers
2k views

C# Datatype for large sorted collection with position?

I am trying to compare two large datasets from a SQL query. Right now the SQL query is done externally and the results from each dataset is saved into its own csv file. My little C# console ...
2
votes
5answers
138 views

Dictionary<> always sorted on value, lookup index from key

I need a dictionary (or any other collection) that stays always sorted by value and can be indexed by key. My purpose is to implement a cache where objects have a unique key and a metric associated to ...
2
votes
2answers
239 views

C#: Dictionary sorted on key with ~O(1) lookup

didn't find an answer to this. I like KeyedCollection, because it keeps the insertion order and has ~O(1) key lookup times. Now I am looking for a similar type that will sort on the key instead of ...
2
votes
2answers
2k views

Heap class in .NET [closed]

Possible Duplicate: Fibonacci, Binary, or Binomial heap in c#? Is there any class like heap in .NET? I need some kind of collection from which I can retrieve min. element. I just want 3 ...
2
votes
2answers
3k views

How to force refresh the DataGridView's content?

I want to make a sorted datagridview input. The following code snippet doesn't quite cut it; even if i put a grd.Refresh, the datagridview doesn't show its updated values. If i press arrow down key ...
0
votes
2answers
65 views

C# Iterate over Dictionary sorted by value

Is there any way to iterate over a Dictionary, in sorted order, sorted by VALUE not key? I did read abut the "SortedDictionary" object, but sadly, that is sorted by key. One solution would be for me ...
0
votes
2answers
162 views

C# .NET poor sorted containers

I'm to write an event based simulator in C#. I need a sorted container for the scheduler that has the following capabilities: Key - Value pairs are stored sorted by the key (Time, Delegate pairs) ...
0
votes
1answer
349 views

How to store sorted records in csv file?

I sort the records of the datatable datewise with the column TradingDate which is type of datetime. TableWithOnlyFixedColumns.DefaultView.Sort = "TradingDate asc"; Now I want to store these sorted ...