糖逗 发表于 2020-4-8 16:24:50

C++刷leetcode(130. 被围绕的区域)【递归】

本帖最后由 糖逗 于 2020-5-8 17:36 编辑

题目描述:
请设计一个函数,用来判断在一个矩阵中是否存在一条包含某字符串所有字符的路径。路径可以从矩阵中的任意一格开始,每一步可以在矩阵中向左、右、上、下移动一格。如果一条路径经过了矩阵的某一格,那么该路径不能再次进入该格子。例如,在下面的3×4的矩阵中包含一条字符串“bfce”的路径(路径中的字母用加粗标出)。

[["a","b","c","e"],
["s","f","c","s"],
["a","d","e","e"]]

但矩阵中不包含字符串“abfb”的路径,因为字符串的第一个字符b占据了矩阵中的第一行第二个格子之后,路径不能再次进入这个格子。

 

示例 1:

输入:board = [["A","B","C","E"],["S","F","C","S"],["A","D","E","E"]], word = "ABCCED"
输出:true
示例 2:

输入:board = [["a","b"],["c","d"]], word = "abcd"
输出:false
提示:

1 <= board.length <= 200
1 <= board.length <= 200

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。



#include <vector>
#include <iostream>

using namespace std;



void dfs(vector<vector<char> >& input, int i, int j){
        if(i < 0 || i >= input.size() || j < 0 || j >= input.size() || input == '#' || input == 'X') return;
        input = '#';
        dfs(input, i - 1, j);
        dfs(input, i + 1, j);
        dfs(input, i, j+1);
        dfs(input, i, j-1);
}

void solution(vector<vector<char> >& input){
        if(input.size() == 0) return;
        int row = input.size();
        int col = input.size();
        for(int i = 0; i < row; i++){
                for(int j = 0; j < col; j++){
                        bool temp = i==0 || j == 0 || i == row-1 || j == col -1;
                        if(temp && input == 'O'){
                                dfs(input, i, j);
                        }
                }
        }
       
        for (int i = 0; i < row; i++) {
      for (int j = 0; j < col; j++) {
            if (input == 'O') {
                input = 'X';
            }
            if (input == '#') {
                input = 'O';
            }
      }
    }
       
       
       
}

int main(void){
        int row;
        vector<vector<char> > input;
        cout << "please send row for the vector:" << endl;
        cin >> row;
        cin.clear();
        cout << "send columns for the vector:" << endl;
        int col;
        cin >> col;
        cin.clear();
        input.resize(row);
        char temp;
        for(int i = 0 ; i < row; i++){
                for(int j = 0; j < col; j++){
                        cin >> temp;
                        input.push_back(temp);
                }
        }
        solution(input);
        for(int i = 0 ; i < row; i++){
                for(int j = 0; j < col; j++){
                        cout << input << " ";
                }
                cout << endl;
        }
       
        return 0;
}



注意事项:
1.参考链接:https://leetcode-cn.com/problems/surrounded-regions/solution/bfsdi-gui-dfsfei-di-gui-dfsbing-cha-ji-by-ac_pipe/

糖逗 发表于 2020-4-9 11:29:57

相似的题:200. 岛屿数量

给定一个由 '1'(陆地)和 '0'(水)组成的的二维网格,计算岛屿的数量。一个岛被水包围,并且它是通过水平方向或垂直方向上相邻的陆地连接而成的。你可以假设网格的四个边均被水包围。

示例 1:

输入:
11110
11010
11000
00000

输出: 1
示例 2:

输入:
11000
11000
00100
00011

输出: 3


#include <vector>
#include <iostream>

using namespace std;

void dfs(vector<vector<char> > & input, int row, int col){
        if(row < 0 || row >= input.size() || col < 0 || col >= input.size() || input == '0'){
                return;
        }
        input = '0';
       
        dfs(input, row + 1, col);
        dfs(input, row-1, col);
        dfs(input, row, col+1);
        dfs(input, row, col-1);
}



int solution(vector<vector<char> > & input){
        int res = 0;
        if(input.size() == 0) return res;
        for(int i = 0; i < input.size(); i++){
                for(int j = 0; j < input.size(); j++){
                        if(input == '1'){
                                dfs(input, i, j);
                                res++;
                        }
                }
        }
    return res;
}




int main(void){
        int row;
    vector<vector<char> > input;
    cout << "please send row for the vector:" << endl;
    cin >> row;
    cin.clear();
    cout << "send columns for the vector:" << endl;
    int col;
    cin >> col;
    cin.clear();
    input.resize(row);
    char temp;
    for(int i = 0 ; i < row; i++){
      for(int j = 0; j < col; j++){
            cin >> temp;
            input.push_back(temp);
      }
    }
   
    int res = solution(input);
    cout << res << endl;
        return 0;
}
页: [1]
查看完整版本: C++刷leetcode(130. 被围绕的区域)【递归】