[검지offer] 소급법
2988 단어 연습 문제
// ,
#include
#include
using namespace std;
//
bool haspathcore( char* m, int row, int col, int i, int j, const char* str, int& pathlen, bool* vis)
{
if (str[pathlen] == '\0')
{
return true;
}
bool haspath = false;
if (i >= 0 && i < row && j >= 0 && j < col && m[i*col + j] == str[pathlen] && !vis[i*col + col])
{
++pathlen;
vis[i*col + j] = true;
haspath = haspathcore(m, row, col, i + 1, j, str, pathlen, vis) ||
haspathcore(m, row, col, i - 1, j, str, pathlen, vis) ||
haspathcore(m, row, col, i, j + 1, str, pathlen, vis) ||
haspathcore(m, row, col, i, j - 1, str, pathlen, vis);
if (!haspath)
{
--pathlen;
vis[i*col + j] = false;
}
}
return haspath;
}
//
bool haspath( char* m, int row, int col, const char* str)
{
if (str == NULL || m == NULL || row < 1 || col < 1)
{
return false;
}
bool *vis = new bool[row*col];
memset(vis, 0, row*col);
int pathlen = 0;
for (int i = 0; i < row; i++)
{
for (int j = 0; j < col; j++)
{
if (haspathcore(m, row, col, i, j, str, pathlen, vis))
{
delete[] vis;
return true;
}
}
}
return false;
}
int main()
{
char test[] = "abtgcfcsjdeh";
char str[] = "bt";
bool resu = haspath(test, 3, 4, str);
cout << resu << endl;
getchar();
return 0;
}
면접문제 13: 로봇의 운동 범위
사고방식: 상하좌우로 이동할 수 있으면 귀속(i+1, j),(i-1, j),(i, j+1),(i, j-1) 대열에 들어갈 수 없는 수위의 합계>18 판단조건 i+j<18 그리고 방문한 적이 없다!vis 획득 행렬의 합 353행 5열 3+5
#include
using namespace std;
//
int getDigitSum(int num)
{
int sum = 0;
while (num > 0)
{
sum += num % 10;
num /= 10;
}
return sum;
}
//
bool check(int threshold, int row, int col, int i, int j, bool* vis)
{
if (i >= 0 && i < row&&j >= 0 && j < col&&getDigitSum(i) + getDigitSum(j) <= threshold && !vis[i*col + j])
{
return true;
}
return false;
}
//
int movingCountCore(int threshold, int row, int col, int i, int j, bool* vis)
{
int count = 0;
if (check(threshold, row, col, i, j, vis))
{
vis[i*col + j] = true;
count = 1 + movingCountCore(threshold, row, col, i + 1, j, vis)
+ movingCountCore(threshold, row, col, i - 1, j, vis)
+ movingCountCore(threshold, row, col, i, j + 1, vis)
+ movingCountCore(threshold, row, col, i, j - 1, vis);
}
return count;
}
//
int movingCount(int threshold, int row, int col)
{
if (threshold < 0 || row <= 0 || col <= 0)
{
return 0;
}
bool* vis = new bool[row*col];
for (int i = 0; i < row*col; i++)
{
vis[i] = false;
}
int count = movingCountCore(threshold, row, col, 0, 0, vis);
delete[] vis;
return count;
}
int main()
{
int count = movingCount(5, 4, 4);
cout << "count= " << count << endl;
getchar();
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
20번째 클릭 네모난 블록 표시 그림Document table</span><span class="token punctuation">{ </span> <span class="token property">background</span><span class...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.