0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

リストが連番か(欠番あり)どうか判定する(C#)

Last updated at Posted at 2022-10-08

はじめに

 本記事はリストが連番か(欠番あり)どうかを判定するC#のコードを考えたので私が備忘録的に残した記事です。

 たとえばこんなリストであれば連番(欠番あり)だと判定します。
 {1, 2, 4, 5, 6}

 たとえばこんなリストであれば連番(欠番あり)だと判定しません。
 {1, 2, 3, 4, 5}

 もしよろしければお読みになった方のお役に立てたら嬉しいです。もともとは連番かどうか調べる記事を書いてたのでよかったらこっちもどうぞ。

追記:
 こちらの記事でいただいたコメントから、リストのサイズが0の時の判定結果はどうするのかという定義が曖昧でしたので、今回は「リストのサイズが0ならば連番だと判定しない」ということにしました。

処理内容とソースコード

処理内容

 どんな処理手順で判定を行うかというアイデアについて書きます。

  1. 判定対象のリストが昇順にソートされているか調べる
  2. リスト内で重複した要素を削除したリストの長さと元のリストの長さが等しいか調べる
  3. 判定対象のリストの最大値と最小値の差が、判定対象のリストの長さ + 欠番している要素数 - 1と等しいか調べる
  4. 1. と2. と3. の真偽値がいずれも真であれば連番(欠番あり)だと判定する
  5. 上記以外の場合に連番(欠番あり)でないと判定する

ソースコード

Main.cs
using System;
using System.Linq;
using System.Collections;
using System.Collections.Generic;

public class Main {
    /// <summary>
    /// 指定されたリストが連番か(欠番あり)どうかを判定します。
    /// リストのサイズが0だとFalseと判定します。
    /// </summary>
    /// <param name="intList">判定対象のリスト</param>
    /// <param name="missingCount">欠番している要素数</param>
    /// <returns>連番かどうかの真偽値</returns>
    public static bool isSequentialWithMissingInMid (List<int> intList, int missingCount) {
        return intList.Count() > 0
            && intList.OrderBy(element => element).SequenceEqual(intList)
            && intList.Distinct().Count() == intList.Count()
            && intList.Max() == intList.Min() + intList.Count() + missingCount - 1
        ;
    }
}

おわりに

 ポーカーゲームを作っていた運びで標題の処理を書くに至りました。よかったらお役立てたらと思います。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?