대기 열 을 이용 하여 미궁 구 해 최 단 경로 실현
26981 단어 데이터 구조
#include "pch.h"
#include
using namespace std;
struct point
{
int x;
int y;
point *front;//
};
int aspect[4][2] = {//
{0,-1},
{1,0},
{-1,0},
{0,1}};
int main()
{
cout << " 8*8 (1 ,0 ):" << endl;
int a[8][8] = {
{0,0,1,1,0,1,0,1},
{0,0,0,0,1,1,0,1},
{0,0,0,1,0,0,1,0},
{1,0,0,0,1,1,0,0},
{1,1,1,0,0,0,1,1},
{0,0,0,0,0,1,0,1},
{0,1,0,0,0,0,1,0},
{0,0,0,1,0,0,0,0} };
for (int i = 0; i < 8; i++)//
{
for (int j = 0; j < 8; j++)
cout << a[i][j] << "\t";
cout << endl;
}
point *start = new point;
point *end = new point;
start->x = 0;
start->y = 0;
start->front = start;
end->x = 7;
end->y = 7;
int f=0,r=1;
point *Qu[100];
Qu[f]=start;//f=0
a[start->x][start->y]= -1;
cout <<" :"<< end->x+1 << "," << end->y+1 << endl;
point *front = new point;
point *next = new point;
int X=0, Y=0;
int flag = 0;
while (f<=r)
{
flag = 0;
front = Qu[f];// f=0 f=1
f++;
if (front->x == end->x&& front->y == end->y)//
{
cout << " !"<<endl;
point *temp = front;
while (temp->x != start->x||temp->y != start->y)
{
cout << "(" << temp->x+1 << "," << temp->y+1 << ")" << endl;
temp = temp->front;
}
cout<< "(" << start->x+1 << "," << start->y+1<< ")" << endl;
break;
}
else //
{
for (int i = 0; i < 4; i++)
{
X = front->x + aspect[i][0];
Y = front->y + aspect[i][1];
if ((X< 8) && (Y< 8) && (X >=0) && (Y >= 0))
{
if (a[X][Y]==0)
{
next = new point;
flag = 1;
a[X][Y] = -1;//
next->x = X;
next->y = Y;
next->front = front;
Qu[r] = next;
r++;
}
}
}
}
if (flag == 0)
a[X][Y] == 1;
}
for (int i = 0; i < 8; i++)//
for (int j = 0; j < 8; j++)
{
if (a[i][j] == 0)
a[i][j] = 1;
if (a[i][j] == -1)
a[i][j] = 0;
}
for (int i = 0; i < 8; i++)//
{
for (int j = 0; j < 8; j++)
cout << a[i][j] << "\t";
cout << endl;
}
cout << "————————— —————————————"<<endl;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.