-
Notifications
You must be signed in to change notification settings - Fork 0
/
BFS&DFS_Template.txt
73 lines (57 loc) · 2.44 KB
/
BFS&DFS_Template.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
本题可以作为DFS和BFS的入门题,模板题。
这是我的LeetCode分类题解(每日更新, issue内有总结),和我一起每日刷题吧!
DFS模板
dfs出口,不满足条件就退出
操作
递归,接着进一步DFS
BFS模板
条件判断(边界判断,其他要求的判断)
创建队列
在队列中加入第一个满足条件的元素
while(队列不为空) {
取出队列头部元素
操作
根据头部元素,往队列中再次加入满足条件的元素
}
详细代码
DFS
private void dfs(int[][] image, int i, int j, int oldColor, int newColor) {
int m = image.length, n = image[0].length;
// dfs出口,不满足条件就退出
if (i < 0 || i >= m || j < 0 || j >= n || image[i][j] != oldColor || image[i][j] == newColor) return;
// 操作
image[i][j] = newColor;
// 递归,接着进一步DFS
dfs(image, i-1, j, oldColor, newColor);
dfs(image, i+1, j, oldColor, newColor);
dfs(image, i, j-1, oldColor, newColor);
dfs(image, i, j+1, oldColor, newColor);
}
BFS
private int[][] bfs(int[][] image, int sr, int sc, int newColor) {
// 条件判断(边界判断,其他要求的判断)
if (image == null || image.length == 0 || image[0].length == 0 || image[sr][sc] == newColor) return image;
int m = image.length, n = image[0].length;
// 创建队列
Queue<int[]> queue = new LinkedList<>();
int oldColor = image[sr][sc];
// 在队列中加入第一个满足条件的元素
queue.add(new int[]{sr, sc});
while (!queue.isEmpty()) {
// 取出队列头部元素
int[] cur = queue.poll();
int i = cur[0], j = cur[1];
// 操作
image[i][j] = newColor;
// 根据头部元素,往队列中再次加入满足条件的元素
if (i-1 >= 0 && image[i-1][j] == oldColor) queue.add(new int[] {i-1, j});
if (i+1 < m && image[i+1][j] == oldColor) queue.add(new int[] {i+1, j});
if (j-1 >= 0 && image[i][j-1] == oldColor) queue.add(new int[] {i, j-1});
if (j+1 < n && image[i][j+1] == oldColor) queue.add(new int[] {i, j+1});
}
return image;
}
作者:caipengbo
链接:https://leetcode-cn.com/problems/flood-fill/solution/mo-ban-ti-jian-dan-yi-yu-li-jie-de-java-dfshe-bfs-/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。