6.14 BFS

Posted kong-xy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.14 BFS相关的知识,希望对你有一定的参考价值。

  1. Making A Large Island
    Input: A 2D Integer grid
    Output: the largest island when you change one 0 to 1
    Limit: can only change one 0 to 1

如何确定largest island?

暴力搜:每一个点都改一次

优化的方向: 找到较大的两个Component 之间的链接通路
被1包围的0 ? 求最值类的问题模板?

跳过

  1. Open the Lock
    起点0000, 终点target, 中间的路径有死路
    Limit: deadends + 一次变换一个数字

问题:每变一个数字就查一次deadends?
可以变的数组与实际变的数字, 最短路径问题

九章参考答案梳理:
Hashset 存所有的deadends 字符串,同时check当前start是否是deadend
声明一个queue结构和另一个新的hashset结构,向队列和hashset当中分别添加start
单独声明set是为了防止重复,优化代码的效率?
两个while循环,一个while是对所有的queue,内部的while是对于当前层的字符做遍历,

  1. Network Delay Time
    模板题目
    times[i] = (u, v, w), u是起点,v是终点,w是发送的时间
    single source all destinations shortest path
    Dijkstra‘s algorithm
    Bellman-Ford
    Floyd-Warshall

对于Comparator的理解
PriorityQueue需要声明类型 PriorityQueue

  1. Is Graph Bipartite
    Bipartite graphs
    A bipartite graph consists of sets of vertices X and Y

  2. Pacific Atlantic Water Flow





















以上是关于6.14 BFS的主要内容,如果未能解决你的问题,请参考以下文章

6.14学习总结

6.14日记

6.14上机

centos6.5安装rabbitmq3.6.14

计网(6.14)

9-6学习打卡(6.14)