您好,登錄后才能下訂單哦!
今天小編給大家分享一下Java中怎么實現(xiàn)廣度優(yōu)先遍歷的相關(guān)知識點,內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
廣度就是擴(kuò)展開,廣度優(yōu)先的意思就是盡量擴(kuò)展開。所以在算法實現(xiàn)的時候,就是一個循環(huán)遍歷枚舉每一個鄰接點。其基本思路就是按層擴(kuò)展,擴(kuò)得越廣越好。
偽代碼如下:
for(int i = 0; i < children.size(); i++){ children.get(i); // 調(diào)用每一個子節(jié)點 }
我們以一個簡單的迷宮為例,以1代表墻,0代表路徑,我們構(gòu)造一個具有出入口的迷宮。
1 1 0 1 1 1 1 1 1
1 0 0 0 0 0 0 1 1
1 0 1 1 1 1 0 1 1
1 0 0 0 0 0 0 0 1
1 1 1 1 1 1 1 0 1
以上面這個0為入口,下面這個0為出口,那么廣度優(yōu)先的算法遍歷順序就為:dp[0][2]為入口,擴(kuò)展出dp[1][2],繼續(xù)擴(kuò)展出dp[1][1]和dp[1][3],我把這個過程列在下面了:
第一步:
dp[0][2] -> dp[1][2]
第二步:
dp[1][2] -> dp[1][1] & dp[1][3]
第三步:
dp[1][1] -> dp[2][1]
dp[1][3] -> dp[1][4]
第四步:
dp[2][1] -> dp[3][1]
dp[1][4] -> dp[1][5]
第五步:
dp[3][1] -> dp[3][2]
dp[1][5] -> dp[1][6]
第六步:
dp[3][2] -> dp[3][3]
dp[1][6] -> dp[2][6]
第七步:
dp[3][3] -> dp[3][4]
dp[2][6] -> dp[3][6]
第八步:
dp[3][4] -> dp[3][5]
dp[3][6] -> dp[3][7]
第九步:
dp[3][5] -> dp[3][6]
dp[3][7] -> dp[4][7] ->到達(dá)終點
算法結(jié)束
好了,如果你已經(jīng)懂了,就趕快去寫代碼吧。你可以使用一個二維數(shù)組來構(gòu)建這個迷宮,然后思考怎么實現(xiàn)狀態(tài)流轉(zhuǎn)。
要實現(xiàn)一個簡單例子中的程序,我們需要編寫輸入函數(shù),處理迷宮為01字符數(shù)組,然后編寫bfs函數(shù)作為主體函數(shù),然后我們怎么讓代碼表現(xiàn)出行走狀態(tài)呢?假定當(dāng)前坐標(biāo)為 x,y,要行走,本質(zhì)上就是判斷 (x-1,y) (x+1,y) (x,y+1) (x,y-1) 是否可以走,所以我們需要編寫一個判定函數(shù),用來驗證邊界條件,這也是bfs里面的核心函數(shù)之一。以Java代碼為例
package com.chaojilaji.book; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; public class Bfs { public static String[][] getInput(String a) { String[] b = a.split("\n"); int n = 0, m = 0; m = b.length; for (int i = 0; i < b.length; i++) { String[] c = b[i].split(" "); n = c.length; break; } String[][] x = new String[m][n]; for (int i = 0; i < b.length; i++) { String[] c = b[i].split(" "); for (int j = 0; j < c.length; j++) { x[i][j] = c[j]; } } return x; } public static Boolean canAdd(String[][] a, Integer x, Integer y, Set<Integer> cache) { int m = a[0].length; int n = a.length; if (x < 0 || x >= m) { return false; } if (y < 0 || y >= n) { return false; } if (a[y][x].equals("0") && !cache.contains(x * 100000 + y)) { cache.add(x * 100000 + y); return true; } return false; } public static Integer bfs(String[][] a) { // 規(guī)定入口在第一行,出口在最后一行 int m = a[0].length; int n = a.length; int rux = -1, ruy = 0; int chux = -1, chuy = n - 1; for (int i = 0; i < m; i++) { if (a[0][i].equals("0")) { // TODO: 2022/1/11 找到入口 rux = i; } if (a[n - 1][i].equals("0")) { chux = i; } } Integer ans = 0; Set<Integer> cache = new HashSet<>(); cache.add(rux * 100000 + ruy); List<Integer> nexts = new ArrayList<>(); nexts.add(rux * 100000 + ruy); while (true) { if (nexts.size() == 0) { ans = -1; break; } int flag = 0; List<Integer> tmpNexts = new ArrayList<>(); for (Integer next : nexts) { int x = next / 100000; int y = next % 100000; if (x == chux && y == chuy) { flag = 1; break; } // TODO: 2022/1/11 根據(jù)現(xiàn)在的坐標(biāo),上下左右走 if (canAdd(a, x - 1, y, cache)) tmpNexts.add((x - 1) * 100000 + y); if (canAdd(a, x + 1, y, cache)) tmpNexts.add((x + 1) * 100000 + y); if (canAdd(a, x, y - 1, cache)) tmpNexts.add(x * 100000 + (y - 1)); if (canAdd(a, x, y + 1, cache)) tmpNexts.add(x * 100000 + (y + 1)); } nexts.clear(); nexts.addAll(tmpNexts); if (flag == 1) { break; }else { ans++; } } return ans; } public static void demo() { String a = "1 1 0 1 1 1 1 1 1\n" + "1 0 0 0 0 0 0 1 1\n" + "1 0 1 1 1 1 0 1 1\n" + "1 0 0 0 0 0 0 0 1\n" + "1 1 1 1 1 1 1 0 1"; String[][] b = getInput(a); Integer ans = bfs(b); System.out.println(ans == -1 ? "不可達(dá)" : "可達(dá),最短距離為" + ans+"步"); } public static void main(String[] args) { demo(); } }
這是數(shù)組的寫法,這也是這個簡單場景的寫法。不過在我們的實際生活中,更多的會使用隊列來實現(xiàn)廣度優(yōu)先搜索。隊列模式下廣度優(yōu)先搜索的偽代碼如下:
queue a; while(!a.empty()){ a.take(); 處理 將擴(kuò)展出來的結(jié)果入隊 }
那么上面這個迷宮,我們就可以使用標(biāo)準(zhǔn)廣度優(yōu)先模板來實現(xiàn),具體代碼如下:
public static Integer bfsQueue(String[][] a) { Queue<Integer> queue = new LinkedList<>(); int m = a[0].length; int n = a.length; int rux = -1, ruy = 0; int chux = -1, chuy = n - 1; for (int i = 0; i < m; i++) { if (a[0][i].equals("0")) { // TODO: 2022/1/11 找到入口 rux = i; } if (a[n - 1][i].equals("0")) { chux = i; } } Integer ans = 0; Set<Integer> cache = new HashSet<>(); cache.add(rux * 100000 + ruy); queue.add(rux * 100000 + ruy); Map<Integer, Integer> buzi = new HashMap<>(); buzi.put(rux * 100000 + ruy, 0); int flag = 0; while (!queue.isEmpty()) { Integer val = queue.poll(); int x = val / 100000; int y = val % 100000; if (x == chux && y == chuy) { flag = 1; ans = buzi.get(x * 100000 + y); break; } // TODO: 2022/1/11 根據(jù)現(xiàn)在的坐標(biāo),上下左右走 if (canAdd(a, x - 1, y, cache)) { buzi.put((x - 1) * 100000 + y, buzi.get(x * 100000 + y)+1); queue.add((x - 1) * 100000 + y); } if (canAdd(a, x + 1, y, cache)) { buzi.put((x + 1) * 100000 + y, buzi.get(x * 100000 + y)+1); queue.add((x + 1) * 100000 + y); } if (canAdd(a, x, y - 1, cache)) { buzi.put(x * 100000 + (y - 1), buzi.get(x * 100000 + y)+1); queue.add(x * 100000 + (y - 1)); } if (canAdd(a, x, y + 1, cache)) { buzi.put(x * 100000 + y + 1, buzi.get(x * 100000 + y)+1); queue.add(x * 100000 + (y + 1)); } } if (flag == 1){ return ans; } return -1; }
這段代碼就可以替換掉上一段代碼中的bfs函數(shù)。將上面的代碼合并到一起,執(zhí)行的結(jié)果為:
可見,兩段代碼的結(jié)果是一致的。
以上就是“Java中怎么實現(xiàn)廣度優(yōu)先遍歷”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。