这是关于个人信息管理系统C++的实验报告
代码:
#include <string> #include <iostream> #include <fstream> #include <iomanip> using namespace std;
struct Employee
{ //声明个人的结构作为链表节点。 //-----数据域----- string m_Code; string m_Name; int m_Year; string m_Sex; string m_Post;
string m_Department; int m_Wage;
//链表节点的指针域--- struct Employee* Next; };
typedef struct Employee Node; typedef Node* Link;
//-------函数声明------------- Link Create(Link Head); void Release(Link Head);
7