鱼C论坛

 找回密码
 立即注册
查看: 1300|回复: 1

[技术交流] C++刷leetcode(130. 被围绕的区域)【递归】

[复制链接]
发表于 2020-4-8 16:24:50 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 糖逗 于 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[i].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[0].size() || input[i][j] == '#' || input[i][j] == 'X') return;
        input[i][j] = '#';
        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[0].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[i][j] == 'O'){
                                dfs(input, i, j);
                        }
                }
        }
        
        for (int i = 0; i < row; i++) {
        for (int j = 0; j < col; j++) {
            if (input[i][j] == 'O') {
                input[i][j] = 'X';
            }
            if (input[i][j] == '#') {
                input[i][j] = '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[i].push_back(temp);
                }
        } 
        solution(input);
        for(int i = 0 ; i < row; i++){
                for(int j = 0; j < col; j++){
                        cout << input[i][j] << " ";
                }
                cout << endl;
        } 
        
        return 0;
}



注意事项:
1.参考链接:https://leetcode-cn.com/problems ... -cha-ji-by-ac_pipe/

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 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[0].size() || input[row][col] == '0'){
                return;
        }
        input[row][col] = '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[0].size(); j++){
                        if(input[i][j] == '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[i].push_back(temp);
        }
    }
    
    int res = solution(input);
    cout << res << endl;
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-15 13:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表