简单的c语言小程序 #define N 200 #include #include #include #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000 #define UP 0x4800 #define ESC 0x011b int i,key; int score=0;/*得分*/ int gamespeed=50000;/*游戏速度自己调整*/ struct Food { int x;/*食物的横坐标*/ int
本文实例讲述了C语言实现简单的走迷宫游戏的方法,代码完整,便于读者理解。
学数据结构时用“栈”写的一个走迷宫程序,实际上用到双向队列,方便在运行完毕后输出经过的点。
#include
#include
#include
using namespace std;
class node
{
public:
int x,y;
int lastOpt;
};
deque sta;
int x,y;
int endx,endy;
int mapW,mapH;
int steps;
int xo