如何获取列表中字符串的平均出现次数
我正在尝试获取列表中字符串出现的平均次数。 基本上我试图在大约 4 个选项的列表中获取最常见的字符串。 例如,在这个例子中,
List<string> lMyList = new List<string>();
lMyList.Add("One");
lMyList.Add("One");
lMyList.Add("Two");
lMyList.Add("Two");
lMyList.Add("Two");
lMyList.Add("Three");
lMyList.Add("Three");
我想将“Two”返回给我......
有什么想法吗?
I am trying to get an average of occurrences of a string in a list.
Basically I am trying to get the most common occurring string in a list of about 4 options.
So for instance in this example
List<string> lMyList = new List<string>();
lMyList.Add("One");
lMyList.Add("One");
lMyList.Add("Two");
lMyList.Add("Two");
lMyList.Add("Two");
lMyList.Add("Three");
lMyList.Add("Three");
I want to get "Two" returned to me...
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 LINQ:
You can use LINQ:
查找平均值 do:
查找最大值 do:
for finding average do:
for finding max do: