diff --git "a/\346\225\260\346\215\256\347\273\223\346\236\204\347\263\273\345\210\227/dijkstra\347\256\227\346\263\225.md" "b/\346\225\260\346\215\256\347\273\223\346\236\204\347\263\273\345\210\227/dijkstra\347\256\227\346\263\225.md" index 08d97b63a2268b29e7db5d35264c91e3b9d69a4b..5da9944d3310d44da7d2887cd4125b1be2a5aed2 100644 --- "a/\346\225\260\346\215\256\347\273\223\346\236\204\347\263\273\345\210\227/dijkstra\347\256\227\346\263\225.md" +++ "b/\346\225\260\346\215\256\347\273\223\346\236\204\347\263\273\345\210\227/dijkstra\347\256\227\346\263\225.md" @@ -870,6 +870,7 @@ double dijkstra(int start, int end, List[] graph) { | LeetCode | ๅŠ›ๆ‰ฃ | | :----: | :----: | +| [286. Walls and Gates](https://leetcode.com/problems/walls-and-gates/?show=1)๐Ÿ”’ | [286. ๅข™ไธŽ้—จ](https://leetcode.cn/problems/walls-and-gates/?show=1)๐Ÿ”’ | | [542. 01 Matrix](https://leetcode.com/problems/01-matrix/?show=1) | [542. 01 ็Ÿฉ้˜ต](https://leetcode.cn/problems/01-matrix/?show=1) | diff --git "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/BFS\346\241\206\346\236\266.md" "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/BFS\346\241\206\346\236\266.md" index fee231feead02f3af23f626fc148c27648a2b545..cd11a47acb594e3273683e92f2ae0fa9cfeb68d9 100644 --- "a/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/BFS\346\241\206\346\236\266.md" +++ "b/\347\256\227\346\263\225\346\200\235\347\273\264\347\263\273\345\210\227/BFS\346\241\206\346\236\266.md" @@ -414,6 +414,7 @@ while (!q1.isEmpty() && !q2.isEmpty()) { | [102. Binary Tree Level Order Traversal](https://leetcode.com/problems/binary-tree-level-order-traversal/?show=1) | [102. ไบŒๅ‰ๆ ‘็š„ๅฑ‚ๅบ้ๅŽ†](https://leetcode.cn/problems/binary-tree-level-order-traversal/?show=1) | | [1091. Shortest Path in Binary Matrix](https://leetcode.com/problems/shortest-path-in-binary-matrix/?show=1) | [1091. ไบŒ่ฟ›ๅˆถ็Ÿฉ้˜ตไธญ็š„ๆœ€็Ÿญ่ทฏๅพ„](https://leetcode.cn/problems/shortest-path-in-binary-matrix/?show=1) | | [117. Populating Next Right Pointers in Each Node II](https://leetcode.com/problems/populating-next-right-pointers-in-each-node-ii/?show=1) | [117. ๅกซๅ……ๆฏไธช่Š‚็‚น็š„ไธ‹ไธ€ไธชๅณไพง่Š‚็‚นๆŒ‡้’ˆ II](https://leetcode.cn/problems/populating-next-right-pointers-in-each-node-ii/?show=1) | +| [286. Walls and Gates](https://leetcode.com/problems/walls-and-gates/?show=1)๐Ÿ”’ | [286. ๅข™ไธŽ้—จ](https://leetcode.cn/problems/walls-and-gates/?show=1)๐Ÿ”’ | | [431. Encode N-ary Tree to Binary Tree](https://leetcode.com/problems/encode-n-ary-tree-to-binary-tree/?show=1)๐Ÿ”’ | [431. ๅฐ† N ๅ‰ๆ ‘็ผ–็ ไธบไบŒๅ‰ๆ ‘](https://leetcode.cn/problems/encode-n-ary-tree-to-binary-tree/?show=1)๐Ÿ”’ | | [542. 01 Matrix](https://leetcode.com/problems/01-matrix/?show=1) | [542. 01 ็Ÿฉ้˜ต](https://leetcode.cn/problems/01-matrix/?show=1) | | [773. Sliding Puzzle](https://leetcode.com/problems/sliding-puzzle/?show=1) | [773. ๆป‘ๅŠจ่ฐœ้ข˜](https://leetcode.cn/problems/sliding-puzzle/?show=1) |