java迷宮算法的理解(遞歸分割,遞歸回溯,深搜,廣搜)

最近這學期做瞭一個java迷宮的課程設計,這裡代碼及其算法邏輯就分享出來。

首先簡單的說一下其中我使用的算法(自動生成地圖:遞歸分割法、遞歸回溯法;尋找路徑:深度優先、廣度優先算法)

遞歸分割法:

地圖外面一圈被墻圍住,然後在空白區域生成十字墻壁,再隨機選擇三面墻,將其打通,這樣就能保證迷宮的流動性,再分別對剛才分好的四個區域以同樣的方式執行分割,一直遞歸下去,直到空間不足以分割就return。

遞歸回溯法:

遞歸回溯法與深度優先算法在大致算法上其實差不多,具體隻有一些細微的差別,都是通過判斷當前點的是四個方向是否可以通過,當某個點堵住就向上退一步操作。遞歸回溯法具體算法如下:

(1)初始化,建立一個所有單元格都被墻隔開的迷宮。

(2)從起點開始,以此單元格開始打通墻壁。

(3)以當前單元格為基準,隨機選擇一個方向,若此方向的鄰接單元格沒有被訪問過,則打通這兩個單元格之間的墻壁,並將此單元格作為當前單元格,重復步驟3.

(4)若當前單元格之間的四個鄰接單元格都已經被訪問過,則退回到進入當前單元格的鄰接單元格,且以此單元格為當前單元格,重復步驟3、4。

(5)直至起始點單元格被退回,則算法結束。

深度優先算法和遞歸回溯差不太多,隻是把鄰接單元格變為的相鄰的單元格,就直接是探尋周圍是否有路可走,而不再是打通墻壁瞭。

廣度優先

以步驟為主導,向四周擴散,比如第一步往四周走一格,第二步就四周的那幾個單元格再往他們的四周走一格,一直下去,直到找到終點為止,這樣返回的就是步驟數,同時因為這是遍歷瞭整個地圖,所以找到的一定是最短的路徑。

  

         

深度優先:

以路徑為主導,一直找下去,如果堵住瞭或者遇到已經訪問過的,就返回上一格,隨機另一條路繼續下去,直到找到終點為止,這種方式找到的路並不是最短的,僅僅提供一條路徑而已。

      

   

下面是遞歸分割法、遞歸回溯法以及文件加載地圖實現的類map

//註意看註釋,不然可能會看不懂,稍微有點亂

遞歸分割法:RandomMap1(),genMaze(),OpenADoor()//這三種方法實現,1加載的後面兩種方法,2實現十字分割,3實現打開兩點為一線之間的一堵墻。

遞歸回溯法:RandomMap2(),list(),digMaze()//這三種方法實現,1加載的後面兩種方法,2連接兩格單元格,即把中間的單元格變為通路,3實現如果往下沒路可走就返回一個單元格進行繼續找路。

文件加載地圖:FileMap()方法

package migong;
 
import java.util.Random;
import java.util.Scanner;
import java.util.Stack;
import java.io.File;
 
 
public class Map{
	Random r = new Random();
	int l1,l2;
	int x,y;//在回溯法中代表當前點
	boolean bool2 = true;//使用在getMaze()與list()方法中
	//判斷是否執行瞭第二個if,如果都沒執行,說明當前點的相鄰點要麼被訪問過瞭,要麼在邊界之外,就需要退一步
	Map(int l1, int l2){
		this.l1 = l1;
		this.l2 = l2;
	}
	Stack<Integer> steps = new Stack<>();
	
	public int[][] RandomMap2(int l1, int l2){//遞歸回溯法自動生成迷宮
		//規定0是墻,1是路,2是已經被探尋過的單元,也可以看做路
		int [][] map = new int[l1][l2];
		for(int i = 1;i < l1; i = i + 2) {//初始化迷宮生成所有單元都被墻隔開的迷宮
			for(int j = 1; j < l2;j = j + 2) {
				map[i][j] = 1;
				map[j][i] = 1;
			}
		}
		map[1][1] = 2;
		digMaze(1,1,map);
		return map;
	}	
	public boolean list(int x, int y, int[][] map) {//(x,y)代表當前單元格,初始單元格為起點
		this.x = x;
		this.y = y;
		int isOpen = r.nextInt(4);//0代表左邊,逆時針旋轉
		boolean bool1 = true;
//判斷第一個if是否執行,如果四個都沒執行,就遞歸在執行一次,因為有可能隨機產生的數過大,把非邊界路就已經給排除瞭
		
		//分別判斷相鄰四個點(x,y-2)(x+2,y)(x,y+2)(x-2,y)
		switch(isOpen) {
		case 0:{
			if((this.y-2) > 0 && (this.y- 2) < l2 - 1) {
				bool1 = false;
				if(map[this.x][this.y-2] == 1) {
					map[this.x][this.y-2] = 2;//表示這個點被訪問瞭
					map[this.x][this.y-1] = 1;//打通墻壁
					this.y = this.y - 2;//改變當前點
					bool2 = false;
					steps.push(0);					
				}
			}		
		}
		case 1:{
			if((this.x+2) > 0 && (this.x+2) < l1 -1) {
				bool1 = false;
				if(map[this.x+2][this.y] == 1) {
					map[this.x+2][this.y] = 2;
					map[this.x+1][this.y] = 1;
					this.x = this.x + 2;
					bool2 = false;
					steps.push(1);
				}
			}
		}
		case 2:{
			if((this.y+2) > 0 && (this.y+2) < l2 - 1) {
				bool1 = false;
				if(map[this.x][this.y+2] == 1) {
					map[this.x][this.y+2] = 2;
					map[this.x][this.y+1] = 1;
					this.y = this.y + 2;
					bool2 = false;
					steps.push(2);
				}
			}			
		}
		case 3:{
			if((this.x-2) > 0 && (this.x-2) < l1 -1) {
				bool1 = false;
				if(map[this.x-2][this.y] == 1) {
					map[this.x-2][this.y] = 2;
					map[this.x-1][this.y] = 1;
					this.x = this.x - 2;
					bool2 = false;
					steps.push(3);
				}
			}
		}
		default:{
			if(bool1) {
				list(this.x,this.y,map);
			}
			}
		}
		return bool2;
	}
	public void digMaze(int x, int y, int[][] map) {
		this.x = x;
		this.y = y;
		this.bool2 = true;
		//不能將bool2定義在list方法中,因為遞歸調用它會讓其變為true但後面switch並不會到第二層if中
		//從而這條註釋下面的if就會判斷失誤
 
		if(list(this.x,this.y,map)) {
			try {
				switch((int)steps.pop()) {//當當前點的下一點全都被訪問瞭就執行退回操作
				case 0:{
					y = y + 2;
					break;
				}
				case 1:{
					x = x -2;
					break;
				}
				case 2:{
					y = y - 2;
					break;
				}
				case 3:{
					x = x + 2;
				}
				default:
				}
			}catch(Exception ex) {
				return;
			}
		}
		
//		if(x == l1 - 2 && y == l2 - 2){//判斷是否到達終點(l1-2,l2-2)
//			return;
//		}
//		if(map[l1-3][l2-2] == 1 && map[l1-2][l2-3] == 1) {
//			return;
//		}
		if(steps.empty()) {//當起始點操作被退回是結束遞歸,這樣生成的地圖對比上面兩種要更好些
			return;
		}
		digMaze(this.x,this.y,map);
	}
	
	public int[][] RandomMap1(int l1, int l2){//遞歸分割法自動生成迷宮
		int [][] map = new int[l1][l2];
//0代表墻,1代表路
		for(int i = 1; i < l1 - 1; i++) {
			for(int j = 1; j < l2 - 1; j++) {
				map[i][j] = 1;
			}
		}
 
		genMaze(1,1,l1,l2,map);		
		return map;
	}	
	private void openAdoor(int x1, int y1, int x2, int y2, int[][] map) {
		//以傳參的兩點為直線,打開這條線的某一點,分割的點存在於x1~(x2-1)或y1~(y2-1)
		int pos;//打開的那一點
		
		if(x1 == x2) {
			pos = y1 + r.nextInt((int)((y2 - y1)/2 + 1))*2;//在奇數行開門
			map[x1][pos] = 1;
		}
		else if(y1 == y2) {
			pos = x1 + r.nextInt((int)((x2 - x1)/2 + 1))*2;//在奇數列開門
			map[pos][y1] = 1;
		}
		else {
			System.out.println("錯誤");
		}
	}
	//x,y代表要分割區域的左上點坐標,l1代表的行數,l2代表的列數
	public void genMaze(int x, int y, int l1, int l2, int[][] map) {
		int Xpos, Ypos;
		
		if(l1 <= 3 || l2 <= 3)
			return;
 
		//Xpos,Ypos隻能取(x或y,l - 1)之間的偶數,這裡是開區間
		//橫著畫線,在偶數位置畫線,
		Xpos = x + r.nextInt((int)(l1/2) - 1)*2 + 1;//Xpos,Ypos相當於兩條分割線交叉點的坐標
			for(int i = y; i < y + l2 - 2;i++) {
				map[Xpos][i] = 0;
			}		
		//豎著畫一條線,在偶數位置畫線
		Ypos = y + r.nextInt((int)(l2/2) - 1)*2 + 1;
			for(int i = x; i < x + l1 - 2;i++) {
				map[i][Ypos] = 0;
			}
		
		//隨機開三扇門,左側墻壁為1,逆時針旋轉
		int isClosed = r.nextInt(4) + 1;
		switch (isClosed) 
        {
        case 1://1開234門,依次下去
            openAdoor(Xpos + 1, Ypos, x + l1 - 2, Ypos, map);// 2
            openAdoor(Xpos, Ypos + 1, Xpos, y + l2 - 2, map);// 3
            openAdoor(x, Ypos, Xpos, Ypos, map);// 4
            break;
        case 2:
            openAdoor(Xpos, Ypos + 1, Xpos, y + l2 - 2, map);// 3
            openAdoor(x, Ypos, Xpos, Ypos, map);// 4
            openAdoor(Xpos, y, Xpos, Ypos, map);// 1
            break;
        case 3:
            openAdoor(x, Ypos, Xpos, Ypos, map);// 4
            openAdoor(Xpos, y, Xpos, Ypos, map);// 1
            openAdoor(Xpos + 1, Ypos, x + l1 - 2, Ypos, map);// 2
            break;
        case 4:
            openAdoor(Xpos, y, Xpos, Ypos, map);// 1
            openAdoor(Xpos + 1, Ypos, x + l1 - 2, Ypos, map);// 2
            openAdoor(Xpos, Ypos + 1, Xpos, y + l2 - 2, map);// 3
            break;
        default:
            break;
        }
		//左上角
		genMaze(x, y, Xpos + 2 - x, Ypos + 2 - y, map);
		//右上角
		genMaze(x, Ypos + 1, Xpos + 2 - x, l2 - Ypos, map);
		//左下角
		genMaze(Xpos + 1, y, l1 - Xpos, Ypos + 2 - y, map);
		//右下角
		genMaze(Xpos + 1, Ypos + 1, l1 - Xpos , l2 - Ypos, map);
	}
	
	public static int[][] FileMap(String filename) throws Exception{//手動生成迷宮的方法
		//讀取沒有空格的數字方陣
		File file = new File(filename);
		if(!file.exists()) {
			System.out.println("文件不存在");
		}		
		Scanner input = new Scanner(file);				
		int l1 = 0, l2 = 0;//l1代表行數,l2代表列數
		String[] str = new String[1024];
		while(input.hasNext()) {
			str[l1++] = input.nextLine();//獲取行數同時把每一行分別賦給str數組的各個元素		
		l2 = str[0].length();
		}
		int [][]map = new int[l1][l2];
		for(int i = 0;i < l1;i++) {
			for(int j = 0; j < l2;j++) {
				map[i][j] = str[i].charAt(j) - '0';//通過兩個Ascll碼之差獲得其數值
//				map[i][j] = Integer.parseInt(str[i].charAt(j) + "");
			}
		}
		input.close();
		return map;
	}
	
	public void show(int[][] map,int l1,int l2) {
		for(int i = 0; i < l1; i++) {
			for(int j = 0; j < l2; j++) {
				System.out.print(map[i][j] + " ");
			}
			System.out.println("\n");
		}
	}	
	
	public static void main(String[] args) throws Exception{
//		String filename = "C:\\Users\\21974\\Desktop\\map.txt";
//		for(int i = 0; i < 2; i++) {
//			for(int j = 0; j < 4; j++) {
//				System.out.print(Map.FileMap(filename)[i][j] + " ");
//			}
//			System.out.println("\n");
//		}
		
		int l1 = 15,l2 = 15;//奇數
		Map m = new Map(l1, l2);
		m.show(m.RandomMap1(l1, l2),l1,l2);	
	}
}

下面是深度優先與廣度優先的類findpath:

package migong;
 
import java.util.LinkedList;
import java.util.Stack;
 
public class findPath {
	public LinkedList<GPS> steps1 = new LinkedList<>();
	public Stack<Integer> steps2 = new Stack<>();
	int x,y;
	public boolean bool = true;
	//判斷是否執行瞭第二個if,如果都沒執行,說明當前點的相鄰點是墻,要麼被訪問過瞭,要麼在邊界之外,就需要退一步
	
	public String shortestPath(int[][] map,int l1, int l2){//最優路徑
		//創建一個方向數組,方向的優先級為 "下左上右"
		 Direction[] di = new Direction[] {new Direction(1,0),new Direction(0,-1),new Direction(-1,0),new Direction(0,1)};
		 
		 //創建一個字符數組,其中DLUR分別表示向下、向上、向左、向右走。
		 StringBuffer[] step = new StringBuffer[] {new StringBuffer("D"),new StringBuffer("L"),new StringBuffer("U"),new StringBuffer("R")};
		 		 		 
	     //創建一個標識符,判斷迷宮是否有解
	     boolean b = false;
				                      
        int x=1,y=1,stepNumber=0;
        String startStep = "";//代表空,沒有操作
        GPS temp = new GPS(x,y,stepNumber,startStep);  //將起始點的信息加入隊列
        map[x][y] = 2;                              //將當前位置標記為已經走過
        steps1.addLast(temp);
        
        Loop:while(!steps1.isEmpty()) {
       	 
       	 temp = steps1.poll() ;    //彈出隊頭元素進行擴展
       	 
       	 for(int i=0;i<4;i++) {    //按照優先級"下左上右",依次進行擴展
       		 int row = temp.x + di[i].inc_x;
       		 int col = temp.y + di[i].inc_y;
       		StringBuffer ts = step[i]; //當前方向的字母表示//當前方向的字母表示
       		 
       		 if(map[row][col] == 1) {
       			 int tempStepNumber = temp.stepNumber+1;
       			String tempStepPath = temp.stb + ts;  
       			 steps1.addLast(new GPS(row,col,tempStepNumber,tempStepPath)); //符合條件的坐標加入隊列
       			 
       			 map[row][col] = 2;   //將該結點的值設為2,擴展該結點
       			 
       			 if(row == l1-2 && col == l2-2) {  //判斷是否到達瞭終點
       				 b = true;
       				 break Loop;        //跳出標記所在的循環
       			 }
       		 }
       	 }     	             	 
        }
        if(b) {
        	return steps1.getLast().stb;
        }else {return "無解";}
	}
	public void sMove(int x, int y, int[][] map) {
		
	}
	
	public Stack<Integer> path(int x, int y, int[][] map){//深度優先自動尋路
		map[1][1] = 3;
		searchMaze(x,y,map);
		return this.steps2;
	}
	public boolean move(int x, int y,int[][] map){									
			//分別判斷相鄰四個點(x,y-1)(x+1,y)(x,y+1)(x-1,y)
			switch(0) {//0代表左,逆時針
			case 0:{
				if((this.y-1) > 0 && (this.y- 1) < map[0].length - 1) {
					if(map[this.x][this.y-1] == 1 || map[this.x][this.y-1] == 2) {
//0代表墻,1代表路,2代表生成迷宮時被訪問瞭的路,在這裡也相當於路,3代表這裡找路時被訪問瞭的路						
						map[this.x][this.y-1] = 3;//標明改點已經走過瞭						
						this.y = this.y - 1;//改變當前點
						bool = false;
						steps2.push(0);
						break;
					}
				}		
			}
			case 1:{
				if((this.x+1) > 0 && (this.x+1) < map.length -1) {
					if(map[this.x+1][this.y] == 1 || map[this.x+1][this.y] == 2) {
						map[this.x+1][this.y] = 3;
						this.x = this.x + 1;
						bool = false;
						steps2.push(1);
						break;
					}
				}
			}
			case 2:{
				if((this.y+1) > 0 && (this.y+1) < map[0].length - 1) {
					if(map[this.x][this.y+1] == 1 || map[this.x][this.y+1] == 2) {
						map[this.x][this.y+1] = 3;
						this.y = this.y + 1;
						bool = false;
						steps2.push(2);
						break;
					}
				}			
			}
			case 3:{
				if((this.x-1) > 0 && (this.x-1) < map.length - 1) {
					if(map[this.x-1][this.y] == 1 || map[this.x-1][this.y] == 2) {
						map[this.x-1][this.y] = 3;
						this.x = this.x - 1;
						bool = false;
						steps2.push(3);
						break;
					}
				}
			}
			default:
			}				
		return bool;
	}
	public void searchMaze(int x, int y, int[][] map) {//這裡是空返回,以後要調用棧直接用類名加數據名
		this.x = x;
		this.y = y;
		this.bool = true;
		if(move(this.x,this.y,map)) {
			try {
				switch((int)steps2.pop()) {//當當前點的下一點全都被訪問瞭就執行退回操作
				case 0:{
					this.y = y + 1;
					break;
				}
				case 1:{
					this.x = x - 1;
					break;
				}
				case 2:{
					this.y = y - 1;
					break;
				}
				case 3:{
					this.x = x + 1;
				}
				default:
				}
			}catch(Exception ex) {
				return;
			}
		}
		
		if(map[map.length - 2][map[0].length - 2] == 3){//判斷是否到達終點(l1-2,l2-2)
			return;
		}	
		searchMaze(this.x,this.y,map);
	}
	
	public void show(Stack<Integer> stack) {
		while(!stack.empty()) {
			System.out.println((int)stack.pop());
		}
	}
	public static void main(String[]args) {
		int l1 = 5,l2 = 5;
		
		Map m = new Map(l1,l2);
		findPath find = new findPath();
		
		int[][] map = m.RandomMap1(l1, l2);
//		String s = find.path(l1,l2,map);
//		System.out.println(s);
//		System.out.println("地圖為");
//		m.show(map, l1, l2);
		find.path(1,1,map);
		System.out.println("路為");
		m.show(map, l1, l2);
		find.show(find.steps2);
	}
}
class Direction{
	int inc_x;   //x方向的增量
	int inc_y;   //y方向的增量
	
	public Direction(int inc_x,int inc_y) {
		this.inc_x = inc_x;
		this.inc_y = inc_y;
	}
}
 
/*
GPS類,成員變量x,y表示坐標,stepNumber表示步數
*/
class GPS{
	int x;
	int y;
	int stepNumber;
	String stb;    //用來記錄路徑
	
	public GPS(int x,int y,int stepNumber,String stb){
		this.x = x;
		this.y = y;
		this.stepNumber = stepNumber;
		this.stb = stb;
	}
}

能看到這裡說明我的文章對你有所幫助,支持一下唄,第一次寫博客有些還不夠規范。

到此這篇關於java迷宮算法的理解(遞歸分割,遞歸回溯,深搜,廣搜)的文章就介紹到這瞭,更多相關java迷宮算法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: