图书管理系统(数据结构)

#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成神之路

版权声明:
作者:congcong
链接:https://www.techfm.club/p/20317.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>