bfs
九幽孤翎
蜉蝣只有认清自己的渺小,才能有化茧成蝶的一天
展开
-
Leetcode_934_最短的桥_广度优先搜索
难度不高,但是代码量还是比较多的,锻炼基本功挺不错的。原创 2022-10-25 17:09:39 · 304 阅读 · 1 评论 -
Leetcode_919_完全二叉树插入器_广搜
代码】Leetcode_919_完全二叉树插入器_广搜。原创 2022-07-25 10:01:06 · 1533 阅读 · 0 评论 -
Leetcode_1030_距离顺序排序矩阵单元格_排序_bfs
11/17 初步思路 排个序就完事了 class Solution { public int[][] allCellsDistOrder(int R, int C, int r0, int c0) { int[][] ans = new int[R*C][2]; int num=0; for (int i = 0; i < R; i++) for (int j = 0; j < C; j++) {原创 2020-11-17 20:06:13 · 355 阅读 · 0 评论