非方形螺旋矩阵打印不正确

Non square spiral matrix not printing correctly

我对这项作业有疑问。我要打印一个不能是正方形的螺旋矩阵,换句话说,用户应该输入行数和列数。

        Console.Write("Enter n: ");
        int n = int.Parse(Console.ReadLine());
        Console.Write("Enter m: ");
        int m = int.Parse(Console.ReadLine());
        int[,] matrix = new int[n,m];
        int row = 0;
        int col = 0;
        string direction = "right";
        int maxRotations = n * m;

        for (int i = 1; i <= maxRotations; i++)
        {
            if (direction == "right" && (col > n - 1 || matrix[row, col] != 0))
            {
                direction = "down";
                col--;
                row++;
            }
            if (direction == "down" && (row > n - 1 || matrix[row, col] != 0))
            {
                direction = "left";
                row--;
                col--;
            }
            if (direction == "left" && (col < 0 || matrix[row, col] != 0))
            {
                direction = "up";
                col++;
                row--;
            }

            if (direction == "up" && row < 0 || matrix[row, col] != 0)
            {
                direction = "right";
                row++;
                col++;
            }

            matrix[row, col] = i;

            if (direction == "right")
            {
                col++;
            }
            if (direction == "down")
            {
                row++;
            }
            if (direction == "left")
            {
                col--;
            }
            if (direction == "up")
            {
                row--;
            }
        }

        // displej matrica

        for (int r = 0; r < n; r++)
        {
            for (int c = 0; c < m ; c++)
            {
                Console.Write("{0,4}", matrix[r,c]);
            }
            Console.WriteLine();

        }
        Console.ReadLine();
    }

我目前的问题是不打印,同时在螺旋打印。换句话说,螺旋有点混乱。 如果我 运行 代码并输入 4 作为行数和 6 作为列数,我得到以下结果:

1  2  3  4 0 24
12 13 14 5 0 23
11 16 17 18 19 22
10  9  8  7 20 21

我做错了什么?

你的前两个条件检查相同的边界(n):

if (direction == "right" && (col > n - 1 || matrix[row, col] != 0))
if (direction == "down" && (row > n - 1 || matrix[row, col] != 0))

我想 "right" 你的边界应该是 m

if (direction == "right" && (col > m - 1 || matrix[row, col] != 0))

这就是它 "turning" 早的原因:n 是 4。这正是它转向的地方。其余都是后续错误。