图书管理系统(数据结构)
#include
#include
#include
//头文件
#define OK 1
#define ERROR 0
#define OVERFLOW -1
#define LIST_INIT_SIZE 50
#define LISTINCREMENT 10
//宏定义,即定义常量
typedef int status;
typedef struct {
char ISBN[15];
char bookname[30];
char writername[10];
char publisher[20];
float price;
} ElemType;
typedef struct {
ElemType *elem;
int length;
int listsize;
} SqList;
图书管理系统(数据结构)最先出现在Python成神之路。
共有 0 条评论