정답을 알고싶어요
무들
질문 제목 : 정답을 알고싶어요질문 내용 :배열로 짜여진 이 프로그램을 포인터로 바꿔보려고 하는데요 정답을 가지고 있지 않아
확인이 불가능 합니다. ㅠㅠㅠ 도와주실분 없으신가요 같이 한번 짜봐주시면 정말 감사하겠습니다.
프로그램 내용은 자식노드와 부모노드로써 목표 노드를 찾는 프로그램입니다.#include stdio.h
#define LIMITL 256
#define TRUE 1
#define START 1
#define GOAL 999
struct node
{
int nodeid;
int parentid;
};
struct node openlist[LIMITL];
int openlistep = 0;
struct node closedlist[LIMITL];
int closedlistep = 0;
void initlist();
void printlist();
void expand(int id);
void movetofirst();
void removefirst();
int check(int id);
void printroute(int id);
int main()
{
initlist();
printlist();
while (TRUE)
{
if (openlistep == 0)
{
printf(목표 노드를 찾을 수 없습니다.\n);
break;
}
if (openlist[0].nodeid == GOAL)
{
printf(\n목표 노드를 찾았습니다.\n);
printf(%d[%d], openlist[0].nodeid,openlist[0].parentid);
printroute(openlist[0].parentid);
break;
}
expand(openlist[0].nodeid);
movetofirst();
printlist();
}
return 0;
}
void printroute(int id)
{
int i;
for (i = 0; i closedlistep; ++i)
if (closedlist[i].nodeid == id)
{
printf(-%d[%d], closedlist[i].nodeid,
closedlist[i].parentid);
break;
}
if (closedlist[i].parentid != 0)
printroute(closedlist[i].parentid);
printf(\n);
}
int check(int id)
{
int i;
int res = 0;
for (i = 0; i openlistep; ++i)
if (openlist[i].nodeid == id)
res = TRUE;
for (i = 0; i closedlistep; ++i)
if (closedlist[i].nodeid == id)
res = TRUE;
return res;
}
void removefirst()
{
int i;
for (i = 0; i openlistep; ++i)
openlist[i] = openlist[i+1];
--openlistep;
}
void movetofirst()
{
closedlist[closedlistep++] = openlist[0];
removefirst();
}void expand(int id)
{
int tree[][5] =
{
{1, 2, 3, 5},
{2, 4},
{3, 6, 7},
{5, 4, 8},
{6, 5, 7},
{8, 7, 999},
{0} /* 정보의 끝 */
};
int i = 0;
int j;
while (tree[i][0] != 0)
{
if (tree[i][0] == id)
{
for (j = 1; tree[i][j] != 0; ++j)
{
if (check(tree[i][j]) != TRUE)
{
openlist[openlistep].nodeid = tree[i][j];
openlist[openlistep++].parentid = id;
}
}
break;
}
++i;
}
}
void initlist()
{
openlist[0].nodeid = START;
openlist[0].parentid = 0;
++openlistep;
}
void printlist()
{
int i;
printf(\n오픈 리스트 );
for (i = 0; i openlistep; ++i)
printf(%d[%d],, openlist[i].nodeid,
openlist[i].parentid);
printf(\n);
printf(클로즈드 리스트 );
for (i = 0; i closedlistep; ++i)
printf(%d[%d],, closedlist[i].nodeid,
closedlist[i].parentid);
printf(\n);
}
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
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 |