1 Star 0 Fork 0

H琨/C语言

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
F.cpp 8.61 KB
一键复制 编辑 原始数据 按行查看 历史
H琨 提交于 2020-04-02 17:58 . 增加文件
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586
#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);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/H_kun165/c_language.git
git@gitee.com:H_kun165/c_language.git
H_kun165
c_language
C语言
master

搜索帮助