gpt4 book ai didi

c# - 计算数组数组中等于指定值的元素

转载 作者:太空宇宙 更新时间:2023-11-03 19:46:46 24 4
gpt4 key购买 nike

我有数组数组。假设我想计算所有 9 个元素中有多少元素等于 "a"

string[][] arr = new string[3][] {
new string[]{"a","b","c"},
new string[]{"d","a","f"},
new string[]{"g","a","a"}
};

如何使用 Enumerable 扩展方法(CountWhere 等)做到这一点?

最佳答案

您只需要一种方法来遍历矩阵的子元素,您可以使用SelectMany() 来做到这一点, 然后使用 Count() :

int count = arr.SelectMany(x => x).Count(x => x == "a");

制作:

csharp> arr.SelectMany(x => x).Count(x => x == "a");
4

或者你可以 Sum()增加 Count() 的计数每行的 s,例如:

int count = arr.Sum(x => x.Count(y => y == "a"));

再次生产:

csharp> arr.Sum(x => x.Count(y => y == "a"));
4

关于c# - 计算数组数组中等于指定值的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44570896/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com