void方法递归错误

时间:2015-01-11 17:43:17

标签: java recursion

事先感谢您的帮助,基本上我试图退出void方法的递归,但在return语句之前和之后发生了一些有趣的事情。基本上程序是通过迷宫找到一条路径,因此,一旦它打印出YES,return语句应该阻止rec(int x,int y)方法的任何进一步递归,但它仍然在打印YES后打印,所以这就是我的问题。所以除了打印YES和NO所有其他println语句基本上用于调试,所以如果你观察,在打印之前,println语句打印' x'作为4和''为1,但是在返回语句之后它们的值已经变为2和1,当没有其他代码来操作它们的值时,这是怎么可能的。



static int x,y,fx,fy;
static char g[][]={ //your maze array , # represents wall and . represents path};
static Stack<Integer>stackx=new Stack<Integer>();
static Stack<Integer>stacky=new Stack<Integer>();
// both of the stacks are used for reverting changes int he maze to original
public static void main(String args[])
{
    x=y=0;
		for(int i=0;i<g.length;i++)
		{
			for(int j=0;j<g[i].length;j++)
			{
				if(g[i][j]=='S')
				{
					x=j;
					y=i;
				}
				else if(g[i][j]=='G')
				{
					fx=j;
					fy=i;
				}
			}
		}
    rec(x,y);
    System.out.println("HEllooooooo");
}
public static void rec(int x,int y)
{
   try
   {
       System.out.println(x+" "+y+" "+check);
       if(x==fx && y==fy)
       {
           System.out.println("YES");
           check=true;
           x=y=0;
           return;
       }
       System.out.println(x+" "+y+" "+check);
       if(check==false)
       {
                         revert();// reverts maze back to original
		 change(); // slides walls in the maze
	
		for(int i=0;i<g.length;i++)
		{
			for(int j=0;j<g[0].length;j++)
			{
				System.out.print(g[i][j]);
			}
			System.out.println("");
		}
		if(!valid(x,y+1))
		{
			if(!((y+1)>(g.length-1)))
			{
				g[y+1][x]='#';
			}
		}
		else
		{
			rec(x,y+1);
		}
		if(!valid(x+1,y))
		{
			if(!((x+1)>(g[0].length-1)))
			{
				g[y][x+1]='#';
			}
		}
		else
		{
			rec(x+1,y);
		}
		if(!valid(x-1,y))
		{
			if(!((x-1)>=0))
			{
				g[y][x-1]='#';
			}
		}
		else
		{
			rec(x-1,y);
		}
		if(!valid(x,y-1))
		{
			if(!((y-1)>=0))
			{
				g[y-1][x]='#';
			}
		}
		else
		{
			rec(x,y-1);
		}
       }
    }catch(ArrayIndexOutOfBoundsException e)
     {
        System.out.println("NO");
        return;
     }
}
&#13;
&#13;
&#13;

,输出如下

&#13;
&#13;
4 1 false
YES      // output is correct and should end but it continues//
2 1 true //x and y values change from 4,1 to 2,1 even with no code to manipulate them
2 1 true
3 0 true
3 0 true
4 0 true
4 0 true
NO
1 1 true
1 1 true
0 1 true
0 1 true
NO
HEllooooooo
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

如果击中fx,fy是最终目标,那么:

boolean rec( int x, int y )

&#34;是&#34;打印出来:

return true;

所有递归调用rec(...,...)应替换为

if( rec( ..., ... ) ) return true;

这会让你退出递归。

最后一次回归:

return false;