搜索算法(四) 广度优先搜素算法

一、BFS

bfs一层一层地遍历图或树,一般用队列实现,可以计算距离目标的步数。

搜索算法(四) 广度优先搜素算法_第1张图片

搜索算法(四) 广度优先搜素算法_第2张图片 

二、例题

1)

力扣icon-default.png?t=N4P3https://leetcode.cn/problems/shortest-bridge/ 这道题实际是计算两个岛屿之间的最短距离,可以先用dfs搜索到第一个岛屿并且记录第一个岛屿的每对坐标,接着以这些坐标作为bfs的起始节点集合,一层一层地向外遍历,寻找第二个岛屿,当找到第二个岛屿时,当前遍历的层数减一就是两个岛屿之间的最短路径。

tips: 将第一个岛屿的坐标值标为2,方便区分两个岛屿

       bfs遍历过程中,将0标为2,表示已加入了第一个岛屿

class Solution {
public:
    int shortestBridge(vector>& grid) {
        int n = grid.size();

        for(int i=0;i>& grid){
        int level = 0;
        int m;
        int n = grid.size();
        while(!first.empty()){
            level++;
            m = first.size();
            while(m--){
                auto[a,b] = first.front();
                first.pop();
                for(int i=0;i<4;i++){
                    int x = a + path[i];
                int y = b + path[i+1];
                if(x>=0 && y>=0 && x>& grid, int a, int b){
        grid[a][b] = 2;
        first.push({a,b});
        int n = grid.size();
        for(int i=0;i<4;i++){
            int x = a + path[i];
            int y = b + path[i+1];
            if(x>=0 && y>=0 && x> first;
    vector path{-1,0,1,0,-1};
};

2)

力扣icon-default.png?t=N4P3https://leetcode.cn/problems/word-ladder-ii/单词接龙可以理解成寻找两个单词之间的最短路径,当两个单词之间只有一个字母不相同时可以认为两个单词之间有一条双向边,这道题就是寻找起始单词到目标单词的最短路径。

用BFS从起始单词开始,变换一个字母,代表走了一步,变换两个字母,代表走了两步了,一层一层变换,一直遍历到达目标单词。

在一层一层遍历的过程中,需要记录下每一层变换所得到的单词,这样BFS结束后,可以用DFS找到最短路径。

我一开始用的是双向BFS+DFS,基于正向的逻辑,在第34个测试用例时超时了。

class Solution {
public:
    vector> findLadders(string beginWord, string endWord, vector& wordList) {
        vector> ans;
        unordered_set dict;
        for(auto w:wordList){
            dict.insert(w);
        }
        if(dict.count(endWord)==0){
            return ans;
        }
        dict.erase(beginWord);
        dict.erase(endWord);
        unordered_set q1{beginWord}, q2{endWord};
        unordered_map> next;
        bool reversed = false, found = false;
        while(!q1.empty()){
            unordered_set q;
            for(const auto& w:q1){
                string s = w;
                for(int i=0;i path;
                path.push_back(beginWord);
                dfs(beginWord,endWord,next,path,ans);
                
            }
            return ans;
    }
    void dfs(string beginWord, string endWord, unordered_map>& next, vector& path, vector>& ans ){
        if(beginWord==endWord){
            ans.push_back(path);
        }
        for(const auto& w:next[beginWord]){
            path.push_back(w);
            dfs(w,endWord,next,path,ans);
            path.pop_back();
        }
    }
};

结果:

搜索算法(四) 广度优先搜素算法_第3张图片

 

看了一下大家的讨论,发现错误在于DFS搜索是正向搜索的(从起始单词向目标单词搜索),这样会导致指数级别的可能路径。

为了不超时,正确做法是从目标单词反向向起始单词搜索,这样可能路径会少很多。

将前面的代码简单修改:记录每一层原单词变换所得到的所有单词,改为记录单词可由哪些单词得到。DFS从目标单词开始搜索,反转最终路径。

class Solution {
public:
    vector> findLadders(string beginWord, string endWord, vector& wordList) {
        vector> ans;
        unordered_set dict;
        for(auto w:wordList){
            dict.insert(w);
        }
        if(dict.count(endWord)==0){
            return ans;
        }
        dict.erase(beginWord);
        dict.erase(endWord);
        unordered_set q1{beginWord}, q2{endWord};
        unordered_map> next;
        bool reversed = false, found = false;
        while(!q1.empty()){
            unordered_set q;
            for(const auto& w:q1){
                string s = w;
                for(int i=0;i path;
                path.push_back(endWord);
                dfs(endWord, beginWord,next,path,ans);
                
            }
            return ans;
    }
    void dfs(string beginWord, string endWord, unordered_map>& next, vector& path, vector>& ans ){
        if(beginWord==endWord){
            reverse(path.begin(), path.end());
            ans.push_back(path);
            reverse(path.begin(), path.end());
        }
        for(const auto& w:next[beginWord]){
            path.push_back(w);
            dfs(w,endWord,next,path,ans);
            path.pop_back();
        }
    }
};

结果:

搜索算法(四) 广度优先搜素算法_第4张图片

 这个结果不算好,我就把双向BFS改成单向了,执行时间明显变快了,说明双向BFS属实没必要。

class Solution {
public:
    vector> findLadders(string beginWord, string endWord, vector& wordList) {
        vector> ans;
        unordered_set dict;
        for(auto w:wordList){
            dict.insert(w);
        }
        if(dict.count(endWord)==0){
            return ans;
        }
        dict.erase(beginWord);
       
        unordered_set q1{beginWord};
        unordered_map> next;
        bool found = false;
        while(!q1.empty()){
            unordered_set q;
            for(const auto& w:q1){
                string s = w;
                for(int i=0;i path;
                path.push_back(endWord);
                dfs(endWord, beginWord,next,path,ans);
                
            }
            return ans;
    }
    void dfs(string beginWord, string endWord, unordered_map>& next, vector& path, vector>& ans ){
        if(beginWord==endWord){
            reverse(path.begin(), path.end());
            ans.push_back(path);
            reverse(path.begin(), path.end());
        }
        for(const auto& w:next[beginWord]){
            path.push_back(w);
            cout<<"*push****        "<

搜索算法(四) 广度优先搜素算法_第5张图片

 

你可能感兴趣的:(leetcode(c++),算法,广度优先,bfs)