해결된 질문
작성
·
10
0
안녕하세요 , 방향벡터를 이용해서 맵을 탐색하는 코드를 변경해서 Connected Component코드를 작성해 봤는데 코드는 제가 예상한 것처럼 잘 돌아갑니다. 제 코드에서 수정해야할 부분이 있을까요?
#include <bits/stdc++.h>
using namespace std;
const int V = 3;
bool m[V][V], visited[V][V];
int dy[] = { -1, 0, 1, 0 };
int dx[] = { 0, 1, 0, -1 };
int cnt;
void go(int y, int x)
{
cout << y << " : " << x << "\n";
visited[y][x] = 1;
for (int i = 0; i < 4; ++i)
{
int ny = y + dy[i];
int nx = x + dx[i];
if (ny < 0 || ny >= 3 || nx < 0 || nx >= 3) continue;
if (visited[ny][nx]) continue;
if (m[ny][nx]) go(ny, nx);
}
return;
}
int main()
{
for (int i = 0; i < V; ++i)
{
for (int j = 0; j < V; ++j)
{
cin >> m[i][j];
}
}
for (int i = 0; i < V; ++i)
{
for (int j = 0; j < V; ++j)
{
if (m[i][j] && visited[i][j] == 0)
{
cnt++;
cout << "ConnectedComponet: " << cnt << "\n";
go(i, j);
}
}
}
return 0;
}
답변 1
1
안녕하세요 ㅎㅎ
범위처리도 다음과 같이 잘하셨고
if (ny < 0 || ny >= 3 || nx < 0 || nx >= 3) continue;
전반적으로 코드 잘 짜셨습니다. ㅎㅎ
감사합니다.