How shall sort this in ASC order?

I got List<List<UInt32>> full of records of List<UInt32> and I want those records to be sorted according to the first column in each record - the column is UInt32 number.

So:

I have List of:

new List<UInt32>: 32,1,1,1,1,1
new List<UInt32>: 22,2,2,2,2,2
new List<UInt32>: 32,1,1,1,1,1
new List<UInt32>: 1,1,1,1,1

which should be sorted to:

List<UInt32>: 1,1,1,1,1
List<UInt32>: 22,2,2,2,2,2
new List<UInt32>: 32,1,1,1,1,1
new List<UInt32>: 32,1,1,1,1,1

-> Only first number matter! others are not important for sorting. I'm lookin for ASC thing, but both would be fantastic so when I think algorithm should be changed, I'll look it up :)

Thank you for your effort to help !

@Samuel, Thank you, I'll try to implement it when I try to change the type :)

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Nearly a duplicate of:

http://stackoverflow.com/questions/721577/how-to-sort-listliststring-according-to-liststring-number-of-fields

Something like:

var sorted = parent.OrderBy( l => l[0] );

Or:

parent.Sort( (a,b) => a[0].CompareTo( b[0] ) )
link|improve this answer
yes, nearly, but I'm learning the stuff and need it also now, so I'm really sorry I'm making ALMOST duplicates, but I don't think it's a bad idea.. Thank you – Skuta Apr 7 '09 at 13:31
This error pops at "parent.sort" -> Error 1 Identifier expected – Skuta Apr 7 '09 at 13:32
the first example's doing the same. Identifier expected. at [0] – Skuta Apr 7 '09 at 13:33
The dot after 'l' is wrong - should read just 'l[0]' instead of 'l.[0]'. – Daniel Brückner Apr 7 '09 at 14:02
Oops, fixed. I feel dumb now. I guess that's what I get for not testing code. – John Gietzen Apr 7 '09 at 14:18
show 2 more comments
feedback

While John's answer works, I would suggest using First() instead of accessing the 0 element in the list. This way it works for any IEnumerable<T> not just IList<T>.

var sorted = list.OrderBy(subList => subList.First());
link|improve this answer
+1, Should I include this in my answer? – John Gietzen Apr 7 '09 at 13:37
If you wish, but both answers are short enough to be seen if they look. – Samuel Apr 7 '09 at 13:45
May be it should even be FirstOrDefault() to avoid a exception in case of an empty sub item. – Daniel Brückner Apr 7 '09 at 14:04
You could, but with .First() and an empty sub list, the sequence returned will be empty. – Samuel Apr 7 '09 at 14:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.