上传者: guoyiqi
|
上传时间: 2021-03-03 21:23:25
|
文件大小: 74KB
|
文件类型: DOC
#include
#include
#include
#include
struct stuff //员工数据结构体
{
char name[10];
char password[10];
char quanxian[2];
};
struct goods //货品数据结构体
{
char number[20];
char name[20];
int quantity;
char cost[20];
char volume[20];
char weight[20];
};
typedef struct a
{
struct stuff s;
struct a *next;
}stuffnode;
typedef struct b
{
struct goods g;
struct b *next;
}goodsnode;