Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I know in c#, to get a item from a list can use FirstOrDefault() or other functions. I am looking for a function can get most presented items from a List.

For example:

{ "a" , "a" , "a" , "b" }.MostPresents() => "a"

Is there a default function in c# (asp.net 4.0) for this?

share|improve this question

2 Answers

up vote 1 down vote accepted
var MostCommonItem = list.GroupBy(item => item)
                         .OrderByDescending(g => g.Count())
                         .Select(g => g.Key).First();
share|improve this answer
3  
Sorting makes this O(n log n) when you can do it in O(n). – Jason Jan 4 '12 at 21:19
good point. if this was a huge list, the complexity would def. play a factor. – moncada Jan 4 '12 at 21:20

Is there a default function in c# (asp.net 4.0) for this?

No, but you can slap together some LINQ and get it pretty quickly.

var mostFrequent = sequence.GroupBy(x => x)
                           .Select(g => new { g.Key, Count = g.Count() })
                           .MaxBy(x => x.Count)
                           .Key;

Here, I am using MaxBy.

share|improve this answer
Very nice indeed! :-) – Richard Jan 4 '12 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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