돌아버리게츠요 ㅠㅠ
큰맘
질문 제목 : 질문 내용 :
#includestdio.h
#includestring.h
//스택 사이즈, 탈출 좌표등 전처리
#define stack_size 100
#define exit_row 11
#define exit_col 15
#define true 1
#define false 0
//동서남북 방향 탐색을 위한 구조체 선언과 초기화
typedef struct{
int x;
int y;
} direction;
direction move[8]={{-1,0},{-1,-1},{0,1},{1,1},{1,0},{1,-1},{0,-1}};
//위치정보를 위한 구조체
typedef struct{
int row;
int col;
int dir;
} place;
place stack[stack_size];
place position;
int top,row,col,next_row,next_col,dir,found=false;
void add(int *top, place position);
place del(int *top);
void main()
{
int i,j;
//방문한곳을 표시하기위한 visit배열과 미로배열 선언,초기화
int visit[12][16]={0,};
int maze[13][17]={
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
{1,0,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1},
{1,1,0,0,0,1,1,0,1,1,1,0,0,1,1,1,1},
{1,0,1,1,0,0,0,0,1,1,1,1,0,0,1,1,1},
{1,1,1,0,1,1,1,1,0,1,1,0,1,1,0,0,1},
{1,1,1,0,0,0,0,1,0,1,1,1,1,1,1,1,1},
{1,0,0,1,1,0,1,1,1,0,1,0,0,1,0,1,1},
{1,0,0,1,1,0,1,1,1,0,1,0,0,1,0,1,1},
{1,0,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1},
{1,1,1,0,0,0,1,1,0,1,1,0,0,0,0,0,1},
{1,0,0,1,1,1,1,1,0,0,0,1,1,1,1,0,1},
{1,0,1,0,0,1,1,1,1,1,0,1,1,1,1,0,1},
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}};
for(i=0;i13;i++)
{
printf(\n);
for(j=0;j17;j++)
{
printf(%2d,maze[i][j]);
}
}
printf(\n\n);
//출발점을 방문 체크하고 첫번째 스택에 저장
visit[1][1]=1;
top=0;
stack[0].row=1;
stack[0].col=1;
stack[0].dir=0;
//도착점을 찾거나 길이 없는경우 while 문 벗어남
while(top-1 && !found){
position=del(&top);
row=position.row;
col=position.col;
dir=position.dir;
//동서남북 탐색구문
while(dir8 && !found){
next_row=row+move[dir].x;
next_col=col+move[dir].y;
if(next_row==exit_row && next_col==exit_col)
found=true;
//다음 좌표가 0 이고 방문한곳도 아닐경우
//방문표시후 이전좌표를 스택에 저장후 다음좌표를 다시 위치정보 구조체에 저장
else if(!maze[next_row][next_col] && !visit[next_row][next_col])
{
visit[next_row][next_col]=1;
position.row=row;
position.col=col;
position.dir=++dir;
add(&top,position);
row=next_row;
col=next_col;
dir=0;
}
else ++dir;
}
}
if(found)
{
printf(올바른 길은\n);
for(i=0;i=top;i++)
printf((%2d, %2d)\n,stack[i].row,stack[i].col);
printf((%2d, %2d)\n,row,col);
printf((%2d, %2d)\n,exit_row,exit_col);
printf(입니다\n);
}
else
printf(출구가 없는 미로 입니다\n);
}
//스택에 위치정보 추가함수
void add(int *top, place position)
{
if(*top=stack_size-1)
{
printf(스택이 가득찼습니다\n);
return;
}
stack[++*top]=position;
}
//스택에서 위치정보를 반환하는 함수
place del(int *top)
{
if(*top==-1)
{
printf(스택이 비었습니다\n);
return;
}
return stack[(*top)--];
}/////////////실행결과////////////
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
1 0 1 0 0 0 1 1 0 0 0 1 1 1 1 1 1
1 1 0 0 0 1 1 0 1 1 1 0 0 1 1 1 1
1 0 1 1 0 0 0 0 1 1 1 1 0 0 1 1 1
1 1 1 0 1 1 1 1 0 1 1 0 1 1 0 0 1
1 1 1 0 0 0 0 1 0 1 1 1 1 1 1 1 1
1 0 0 1 1 0 1 1 1 0 1 0 0 1 0 1 1
1 0 0 1 1 0 1 1 1 0 1 0 0 1 0 1 1
&nbbr /1 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1
1 1 1 0 0 0 1 1 0 1 1 0 0 0 0 0 1
1 0 0 1 1 1 1 1 0 0 0 1 1 1 1 0 1
1 0 1 0 0 1 1 1 1 1 0 1 1 1 1 0 1
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
출구가 없는 미로 입니다
요래뜸..환장해버리겟음..어디가틀린거죠..
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |