查找数组中单词的最小和最大长度的最短方法

发布于 2024-08-02 23:32:15 字数 270 浏览 2 评论 0原文

我有以下数组,

string[] words = { "cherry", "apple", "blueberry", "banana", "mango", "orange", "pineapple" };

我想找到 MaxMin 编号。字母表。例如,Max = 9(对于菠萝)和Min = 5(对于苹果)

这是执行此操作的最短方法。

I have following array

string[] words = { "cherry", "apple", "blueberry", "banana", "mango", "orange", "pineapple" };

I want to find the Max and Min no. of alphabets. e.g. Max = 9 (for pineapple) and Min = 5 (for apple)

Which is the shortest method to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

泪痕残 2024-08-09 23:32:15

您可以使用 Min最多 方法:

var min = words.Min(w=> w.Length);  // 5
var max = words.Max(w=> w.Length);  // 9

You can use the Min and Max methods:

var min = words.Min(w=> w.Length);  // 5
var max = words.Max(w=> w.Length);  // 9
英雄似剑 2024-08-09 23:32:15

最有效的方法是简单地循环字符串:

int min = Int32.MaxValue;
int max = 0;
foreach (s in words) {
   min = Math.Min(min, s.Length);
   max = Math.Max(max, s.Length);
}

The most efficient is to simply loop through the strings:

int min = Int32.MaxValue;
int max = 0;
foreach (s in words) {
   min = Math.Min(min, s.Length);
   max = Math.Max(max, s.Length);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文