0

我正在尝试编写一个使用递归方法查找从二维数组开始到结束的路径数的程序。这些步骤应该从 [0][0] 开始直到结束。数组由 0 到 99 之间的整数填充。

对于数组中的每个数字,可以向前迈出两个不同的步骤:例如,如果 [0][0] 是 21 ,则下一步可能是 [0+2][0+1] 或 [0+1][0+2] . 该方法应返回到达终点的不同路径的数量。

这是我的代码:

在编译期间,当方法获取 [][] 数组时发生溢出

     public class two
        {
            int[][] _my=new int[0][0];
            public two ()
        {
        }
        static int count=0;
        public static int count;

ountPath(int[][] mat)
    {
        int nextX=0;
        int nextY=0;
        int current=mat[0][0];
        if (current<=9)
        {
            nextX=current;
            nextY=current;
            if (checkBorders(0,0,nextX,nextY,mat)==0)
            {
                return 0;
            }
        }
        else
        {
            nextX=(int)current/10;
            nextY=current%10;
            if (checkBorders(0,0,nextX,nextY,mat)==0)
            {
                return 0;
            }
        }
        countPath(mat,nextX,nextY);
        countPath(mat,nextY,nextX);
        return count;
    }

    public static int countPath(int[][] mat,int x,int y)
    {
        int current=mat[x][y];
        int nextX=0;
        int nextY=0;
        int terminate=0;
        if (current<=9)
        {
            nextX=current;
            nextY=current;
            if (checkBorders(x,y,nextX,nextY,mat)==0)
            {
                return 0;
            }
        }
        else
        {
            nextX=(int)current/10;
            nextY=current%10;
            if (checkBorders(x,y,nextX,nextY,mat)==0)
            {
                return 0;
            }
        }

        if (((mat.length-1)==nextY)&&((mat[0].length-1)==nextX))
        {
           terminate=1;
        }

        if (terminate==1)
            count++;
        else
        {
        countPath(mat,nextX,nextY);
        countPath(mat,nextY,nextX);
        }
        return count;
    }

    public static int checkBorders(int x,int y,int x1,int y1,int[][] mat)
    {
        int maxX=mat[0].length;
        int maxY=mat.length;
        if ((x+x1)>maxX)
            return 0;
        else if ((y+y1)>maxY)
            return 0;
        else return 1;
    }

}

请帮我修复代码。

4

1 回答 1

0

您必须再添加一个 bool 数组,您将在其中存储已访问过的状态。现在您可能会遇到以下情况:

您处于状态 A。从状态 A,您可以进入状态 B 和 C。从状态 B,您可以进入状态 A <- 这将是无限循环。

此外,记忆将大大提高计算速度。

希望我对你有所帮助。

于 2013-06-23T13:30:22.683 回答