码迷,mamicode.com
首页 > Windows程序 > 详细

C#,判断数字集合是否是连续的

时间:2019-05-28 12:53:14      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:i++   集合   color   als   ==   连续   判断   style   lse   

/// <summary>
/// 判断数字集合是否是连续的
/// </summary>
/// <returns></returns>
public bool IsContinuous(List<int> numList)
{
    numList.Sort((x, y) => -x.CompareTo(y));//降序
    bool result = false;

    for (int i = 0; i < numList.Count(); i++)
    {
        if (numList[i] - numList[i + 1] == 1)
            result = true;
        else
        {
            result = false;
            break;
        }
    }
    return result;
}

 

C#,判断数字集合是否是连续的

标签:i++   集合   color   als   ==   连续   判断   style   lse   

原文地址:https://www.cnblogs.com/gilbert/p/10936407.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!