2.h

来自「des算法 实现文件加密速度比网上的快」· C头文件 代码 · 共 45 行

H
45
字号
#include"iostream.h"
#include"time.h"
#include"stdlib.h"
#include"windows.h"
#include"math.h"

#define OK 1
#define ERROR 0
#define WAY 0
#define WALL 23
#define FOOT_WAY 1
#define YES 1  //表示已经走过
#define NO 0


typedef int status;

typedef struct pe
{
	int postion;
	int direction;
	struct pe *next;
}people,*p_people;

typedef struct no
{
	int way_wall;
	int foot;
}chess,*pchess,**ppchess;
void creat_map(int level);
void show_map(int b);
status solve_maze(p_people &head);
status pass(p_people &head);
void enter_zhan(p_people &head);
status other_pass(p_people &head);
status exit_zhan(p_people &head);
void cartoon_showmap(p_people &head);
void init(p_people &head);
void chess_size(ppchess &nodle,int c_size);





⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?