type.h
来自「利用C++和数据结构编写的图书管理系统!」· C头文件 代码 · 共 77 行
H
77 行
typedef struct {
char bno[5];
char bname[21];
int namenext;
char author[9];
int authnext;
char press[11];
int prenext;
char sortno[4];
int storenum;
int borrownum;
}BookRecType;
typedef struct {
BookRecType BookDbase[BookSize];
int len;
}BookDbaseFile;
typedef struct {
char bno[5];
int RecNo;
}BidxRecType;
typedef struct {
BidxRecType BnoIdx[BookSize];
int len;
}BnoIdxFile;
typedef struct {
char bname[21];
int lhead;
int RecNum;
}BNRecType;
typedef struct {
BNRecType LHFrec1[BLHnum];
int len1;
}LHFile1;
typedef struct {
char author[9];
int lhead;
int RecNum;
}BARecType;
typedef struct {
BARecType LHFrec2[BLHnum];
int len2;
}LHFile2;
typedef struct {
char press[11];
int lhead;
int RecNum;
}BPRecType;
typedef struct {
BPRecType LHFrec3[BLHnum];
int len3;
}LHFile3;
typedef struct {
char rno[8];
char name[8];
int bn1;
int bn2;
}RRecType;
typedef struct {
RRecType ReadRec[RRnum];
int len;
}ReadFile;
typedef struct {
char rno[8];
char bno[5];
char date1[9];
char date2[9];
}BbookRecType;
typedef struct {
BbookRecType Bbook[BookSize];
int len;
}BbookFile;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?