摘要:
用C++语言实现链表基本操作: 一、链表定义及相关操作声明 LinkList.h 文件 1.链表定义 typedef struct staff_listnode StructStaffNode; struct staff_listnode{ string name; // 员工姓名 int age; //员工年龄 bool sex; //员工性别 string number; //员工工号 st... 阅读全文
posted @ 2012-07-25 23:06 kaffeel 阅读(1154) 评论(0) 推荐(0) 编辑