代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <malloc.h>
#include <windows.h>
#include <stdlib.h>
void Pos(int x,int y) //光标定位
{
COORD pos;
HANDLE hOutput;
pos.X=x;
pos.Y=y;
hOutput=GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleCursorPosition(hOutput,pos);
}
void HideCursor() //隐藏光标
{
CONSOLE_CURSOR_INFO cursor_info = {1, 0};
SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}
//#define DataType int
#define MAXSIZE 1024
typedef struct
{
//DataType data[MAXIZE];
int data[MAXSIZE];
int top;
}Stack;
//初始化栈
Stack* Initialization_Stack()
{
Stack* p; //stack类型的指针变量指向stack
p = (Stack*)malloc(sizeof(Stack)); //开辟一个大小为stack结构体大的空间,让p指向那个开辟的空间
if(!p) //如果p没有内容,则会返回true if(true)
{
printf("空间不足\n");
return NULL; //此时返回NULL……不懂
}
else
{
p->top = -1; //因为top会++,数组第一个是0嘛
return p; //将p返回,创建成功
}
}
//判断栈是否为空
int Judge_Stack(Stack* p)
{
if(p->top == -1) //检测到top为-1,说明刚刚创建,空间充足,返回true
return 1;
else
return 0;
}
//入栈存储数据
int Putin_Stack(Stack* p,int x)
{
if(p->top == MAXSIZE - 1) //如果top到达数组末尾了,返回false
return 0;
else{
p->top++; //反之继续增加,进入下一个空间,返回true
p->data[p->top] = x;
return 1;
}
}
//退回top两格
int Delete_Stack(Stack* p)
{
if(Judge_Stack(p)) //同理Judge_Stack(p)如果返回1(true)说明栈此处是空的没有元素
{
return 0;
}
else
{
p->top-=2;
return 1; //返回true
}
}
//附属
void clearner()
{
Pos(2,0);
printf(" ");
<<<<<<< HEAD
Pos(8,3);
printf(" ");
Pos(6,5);
printf(" ");
Pos(10,6);
printf(" ");
Pos(12,3);
printf(" ");
Pos(12,6);
printf(" ");
Pos(14,6);
printf(" ");
Pos(14,7);
printf(" ");
Pos(2,8);
printf(" ");
Pos(4,8);
printf(" ");
Pos(8,8);
printf(" ");
Pos(16,9);
printf(" ");
=======
Pos(6,5);
printf(" ");
Pos(2,0);
printf(" ");
Pos(16,9);
printf(" ");
>>>>>>> 955bccbb443e18d3be3c1f7b2fd583a3f76132f2
}
//创建地图
void Creat_Mapmove()
{
HideCursor() ;
<<<<<<< HEAD
system("mode con cols=30 lines=15");
for(int j=0;j<11;j++)
{
for(int i=0;i<17;i+=2)
{
Pos(16,j);
printf("▉");
if(j==1 || j==2)
{
Pos(10,j);
printf("▉");
Sleep(50);
continue;
}
else if(j==4 || j==5 || j==7)
{
Pos(6,j);
printf("▉");
Pos(14,j);
printf("▉");
Sleep(50);
continue;
}
else if(j==9)
{
Pos(0,j);
printf("▉");
Sleep(50);
continue;
}
Pos(i,j);
printf("▉");
Sleep(50);
}
}
=======
int i;
system("mode con cols=30 lines=15");
for(i=0;i<17;i+=2)
{
Sleep(50);
Pos(i,0);
printf("▉");
Pos(i,10);
printf("▉");
if(i==10)
{
for(int j=1;j<4;j++)
{
Sleep(50);
Pos(i,j);
printf("▉");
}
}
else if(i==14)
{
for(int j=3;j<6;j++)
{
Sleep(50);
Pos(i,j);
printf("▉");
}
}
else if(i==6)
{
for(int j=3;j<9;j++)
{
Sleep(50);
Pos(i,j);
printf("▉");
}
}
}
for(i=1;i<10;i+=1)
{
Sleep(50);
Pos(0,i);
printf("▉");
Pos(16,i);
printf("▉");
if(i==3)
{
for(int j=2;j<7;j+=2)
{
Sleep(50);
Pos(j,i);
printf("▉");
}
}
else if(i==6)
{
for(int j=2;j<9;j+=2)
{
Sleep(50);
Pos(j,i);
printf("▉");
}
}
else if(i==8)
{
for(int j=10;j<15;j+=2)
{
Sleep(50);
Pos(j,i);
printf("▉");
}
}
}
>>>>>>> 955bccbb443e18d3be3c1f7b2fd583a3f76132f2
clearner();
printf("\n\n");
}
void map()
<<<<<<< HEAD
{
for(int j=0;j<11;j++)
{
for(int i=0;i<17;i+=2)
{
Pos(16,j);
printf("▉");
if(j==1 || j==2)
{
Pos(10,j);
printf("▉");
continue;
}
else if(j==4 || j==5 || j==7)
{
Pos(6,j);
printf("▉");
Pos(14,j);
printf("▉");
continue;
}
else if(j==9)
{
Pos(0,j);
printf("▉");
continue;
}
Pos(i,j);
printf("▉");
}
}
clearner();
=======
{
for(int i=0;i<17;i+=2)
{
if(i==2)
{
continue;
}
Pos(i,0);
printf("▉");
Pos(i,10);
printf("▉");
if(i==10)
{
for(int j=1;j<4;j++)
{
Pos(i,j);
printf("▉");
}
}
else if(i==14)
{
for(int j=3;j<6;j++)
{
Pos(i,j);
printf("▉");
}
}
else if(i==6)
{
for(int j=7;j<9;j++)
{
Pos(i,j);
printf("▉");
}
Pos(i,4);
printf("▉");
}
}
for(i=1;i<10;i+=1)
{
if(i==9)
{
continue;
}
Pos(0,i);
printf("▉");
Pos(16,i);
printf("▉");
if(i==3)
{
for(int j=2;j<7;j+=2)
{
Pos(j,i);
printf("▉");
}
}
else if(i==6)
{
for(int j=2;j<9;j+=2)
{
Pos(j,i);
printf("▉");
}
}
else if(i==8)
{
for(int j=10;j<15;j+=2)
{
Pos(j,i);
printf("▉");
}
}
}
Pos(0,9);
printf("▉");
Pos(2,10);
printf("▉");
>>>>>>> 955bccbb443e18d3be3c1f7b2fd583a3f76132f2
}
//结束
void END()
{
system("cls");
Pos(6,4);
printf("*");
printf("成功走完迷宫!\n");
Sleep(1000);
}
//播放路径
void ShowTheLoad(Stack* p,int x,int y)
{
int i=0;
system("cls");
Sleep(1000);
Pos(6,4);
printf("*");
printf("开始演示\n");
Sleep(1000);
system("cls");
y=p->data[i];
x=p->data[i+1];
map();
Pos(x,y);
printf("*");
while(1)
{
i+=2;
map();
y=p->data[i];
x=p->data[i+1];
Pos(x,y);
printf("*");
Pos(p->data[i-1],p->data[i-2]);
printf(" ");
Sleep(100);
if(x==16 && y==9)
{
break;
}
}
Sleep(1000);
system("cls");
i=0;
y=p->data[i];
x=p->data[i+1];
map();
while(1)
{
i+=2;
y=p->data[i];
x=p->data[i+1];
Pos(x,y);
printf("*");
Sleep(100);
if(x==16 && y==9)
{
break;
}
}
}
//开始
<<<<<<< HEAD
void Start()
=======
void Strat()
>>>>>>> 955bccbb443e18d3be3c1f7b2fd583a3f76132f2
{
Stack* p;
int x=2,y=0;
p=Initialization_Stack();
Pos(x,y);
printf("*");
Putin_Stack(p,y);
Putin_Stack(p,x);
while(1)
{
map();
if(x==16 && y==9)
{
break;
}
//先向前走一步
y++;
Putin_Stack(p,y);
Putin_Stack(p,x);
Pos(x,y);
printf("*");
Sleep(100);
if( (y==3 && (x==2 || x==4 || x==6 || x==14)) || (y==6 && x==8) ||
(y==8 && (x==10 || x==12 || x==14)) || y==10)
{
Pos(p->data[p->top-2],p->data[p->top-3]);
printf("*");
Delete_Stack(p);
Pos(x,y);
Sleep(100);
printf("▉");
y=p->data[p->top-1];
x+=2;
Putin_Stack(p,y);
Putin_Stack(p,x);
Pos(x,y);
printf("*");
Sleep(100);
if( (x==10 && (y==1 || y==2 || y==3 || y==8)) || (x==14 && (y==3 || y==4 || y==5)) ||
(x==16 && y!=9) )
{
Pos(p->data[p->top-2],p->data[p->top-3]);
printf("*");
Delete_Stack(p);
Pos(x,y);
printf("▉");
x=p->data[p->top];
if(((y-2)==5 && x==14) || ((y-2)==3 && (x==2 || x==4)) ||
(y==6 && (x==2 || x==6 || x==4) ) )
{
while(!((x==10 && (y==1 || y==2 || y==3 || y==8)) || (x==14 && (y==3 || y==4 || y==5)) ||
(x==16 && y!=9) || x==0 || (x==6 && (y==7 || y==8))))
{
x-=2;
}
x+=2;
Pos(p->data[p->top-2],p->data[p->top-3]);
printf(" ");
Sleep(100);
system("cls");
continue;
}
y--;
Putin_Stack(p,y);
Putin_Stack(p,x);
Pos(x,y);
printf("*");
Sleep(100);
if( (y==3 && (x==2 || x==4 || x==6 || x==14)) || (y==6 && x==8) || (y==8 && x==10) ||
y==10)
{
Pos(p->data[p->top-2],p->data[p->top-3]);
printf("*");
Delete_Stack(p);
Pos(x,y);
printf("▉");
y=p->data[p->top-1];
while(!((x==10 && (y==1 || y==2 || y==3 || y==8)) || (x==14 && (y==3 || y==4 || y==5)) ||
(x==16 && y!=9) || x==0 || (x==6 && (y==7 || y==8))))
{
x-=2;
}
x+=2;
Pos(p->data[p->top-2],p->data[p->top-3]);
printf(" ");
Sleep(100);
system("cls");
continue;
}
else
{
Pos(p->data[p->top-2],p->data[p->top-3]);
printf(" ");
Sleep(100);
system("cls");
continue;
}
}
Pos(p->data[p->top-2],p->data[p->top-3]);
printf(" ");
Sleep(100);
system("cls");
continue;
}
else
{
/*Putin_Stack(p,y);
Putin_Stack(p,x);
Pos(x,y);
printf("*");*/
Pos(p->data[p->top-2],p->data[p->top-3]);
printf(" ");
Sleep(100);
system("cls");
continue;
}
}
END();
ShowTheLoad(p,x,y);
}
void EDNPlus()
{
Sleep(1000);
system("cls");
Sleep(1500);
Pos(6,2);
printf("*");
printf("演示结束\n");
Sleep(2000);
Pos(6,4);
printf("*");
printf("by 钟琨\n");
Sleep(2000);
Pos(6,6);
printf("*");
printf("按任意键退出\n\n ");
Sleep(2000);
exit(0);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。