8

ここでの簡単な質問(おそらく簡単な答えではないでしょうか?)

2次元配列があるとしましょう

[0] [1] [2]
[3] [4] [5]
[6] [7] [8]

ここで、6番の位置を取得したいとします。

1次元配列ではArray.indexOf()を使用できることはわかっていますが、2次元配列ではどのようなオプションがありますか?

ありがとう!

4

2 に答える 2

20

私はこのようなことを言うでしょう:

public static Tuple<int, int> CoordinatesOf<T>(this T[,] matrix, T value)
{
    int w = matrix.GetLength(0); // width
    int h = matrix.GetLength(1); // height

    for (int x = 0; x < w; ++x)
    {
        for (int y = 0; y < h; ++y)
        {
            if (matrix[x, y].Equals(value))
                return Tuple.Create(x, y);
        }
    }

    return Tuple.Create(-1, -1);
}
于 2010-07-16T00:04:47.303 に答える
1

これは、任意のランクの配列でインデックスを見つける必要があるメソッドです。

...ランクごとに上限/下限範囲を追加

public static class Tools
{
    public static int[] FindIndex(this Array haystack, object needle)
    {
        if (haystack.Rank == 1)
            return new[] { Array.IndexOf(haystack, needle) };

        var found = haystack.OfType<object>()
                          .Select((v, i) => new { v, i })
                          .FirstOrDefault(s => s.v.Equals(needle));
        if (found == null)
            throw new Exception("needle not found in set");

        var indexes = new int[haystack.Rank];
        var last = found.i;
        var lastLength = Enumerable.Range(0, haystack.Rank)
                                   .Aggregate(1, 
                                       (a, v) => a * haystack.GetLength(v));
        for (var rank =0; rank < haystack.Rank; rank++)
        {
            lastLength = lastLength / haystack.GetLength(rank);
            var value = last / lastLength;
            last -= value * lastLength;

            var index = value + haystack.GetLowerBound(rank);
            if (index > haystack.GetUpperBound(rank))
                throw new IndexOutOfRangeException();
            indexes[rank] = index;
        }

        return indexes;
    }
}
于 2010-07-16T01:11:57.073 に答える