C#,判断数字集合是否是连续的
Posted gilbert
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#,判断数字集合是否是连续的相关的知识,希望对你有一定的参考价值。
/// <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#,判断数字集合是否是连续的的主要内容,如果未能解决你的问题,请参考以下文章