?? maze.h
字號:
#ifndef MAZE_H
#define MAZE_H
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
//#define SElemType char
#define OVERFLOW -2
//#define ERROR -1
#define OK 1
#define TRUE 1
#define FALSE 0
typedef CString MazeType ;
typedef int Status ;
typedef struct{
public:
int x ;
int y ;
// bool operator==(const PosType &) ;
}PosType;
/*
bool PosType::operator ==(const PosType &Current)
{
if ((x == Current.x) && (y==Current.y) )return TRUE ;
return FALSE ;
}*/
typedef struct {
int ord ;
PosType seat ;
int di ;
}SElemType;
typedef struct SqStack{
SElemType *base ;
SElemType *top ;
int stacksize ;
}SqStack;
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -