数据结构课程设计——仓库管理系统源程序.pdf
#include using namespace std; typedef struct{ char no[10]; char name[30]; int count; }DataType; struct Node{ DataType data; Node *next; }; class Link{ public: Link; // 构造函数建立单链表 int Insert;
下载地址
用户评论