1 Star 0 Fork 0

duanfaxin/origin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
jianzhi6.cpp 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
duanfaxin 提交于 2022-06-26 17:27 . 0.0
#include<bits/stdc++.h>
using namespace std;
vector<vector<bool>> bb(201,vector<bool>(201));
class Solution {
//bool st[N][N];//记录是否遍历过
const int N = 210;
public:
int dx[4] = {0,1,0,-1},dy[4] = {1,0,-1,0};
int x,y; //记录当前位置
bool dfs(int a,int b,vector<vector<char>>& board, string word,string temp)
{
if(temp == word)
return true;
//string ans = temp;
for(int i = 0;i<4;i++)
{
int _x = a + dx[i];
int _y = b + dy[i];
if(_x>=0&&x<board.size()&&_y>=0&&_y<board[0].size()&&!bb[_x][_y])
{
bb[_x][_y] = true;
temp.push_back(board[_x][_y]);
dfs(_x,_y,board,word,temp);
temp.pop_back();
bb[_x][_y] = false;
}
}
return false;
}
bool exist(vector<vector<char>>& board, string word) {
//深搜
int n = board.size();
if(n == 0)return false;
int m = board[0].size();
string temp = "";
for(int i = 0;i<n;i++)
{
for(int j = 0;j<m;j++)
{
if(dfs(i,j,board,word,temp))
return true;
bb.clear();
temp.clear();
}
}
return false;
}
};
int main()
{
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/duanfaxin/origin.git
[email protected]:duanfaxin/origin.git
duanfaxin
origin
origin
master

搜索帮助