博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Surrounded Regions
阅读量:5327 次
发布时间:2019-06-14

本文共 619 字,大约阅读时间需要 2 分钟。

 

int m = 0,n=0;    void solve(vector
> &board) { // Start typing your C/C++ solution below // DO NOT write int main() function if(board.empty()||board[0].empty()) return; m = board.size(); n = board[0].size(); int i,j; for(j=0;j
>& board) { if(i>=m||i<0||j<0||j>=n||board[i][j]!='O') return; board[i][j] = '+'; dfs(i-1,j,board); dfs(i+1,j,board); dfs(i,j-1,board); dfs(i,j+1,board); }

  

转载于:https://www.cnblogs.com/summer-zhou/p/3357799.html

你可能感兴趣的文章
Python中append()与extend()的区别
查看>>
404 Note Found 队-Alpha9
查看>>
javascript 中==和===的区别
查看>>
bzoj 1610 连线游戏
查看>>
linux双机热备份
查看>>
Python编程-继承和接口
查看>>
解析json对象出现$ref: "$.list[0]"的解决办法
查看>>
LeetCode--Longest Common Prefix
查看>>
设计模式-12-命令模式
查看>>
lock condition
查看>>
Leetcode 372.超级次方
查看>>
【转】plist文件的内容清空
查看>>
STL之Ranges区间讨论
查看>>
读Thinking in Java(1~4)
查看>>
后缀自动机专题
查看>>
Js选择框脚本 移动操作select 标签中的 option 项的操作事项
查看>>
《Algorithms 4th Edition》读书笔记——2.4 优先队列(priority queue)-Ⅵ
查看>>
system_Class类说明文档
查看>>
数据传输时的加密
查看>>
Altium Designer生成网表 导出网表【worldsing笔记】
查看>>