如何用C++语言链表实现学生信息管理系统

日期:2010-01-02 13:13:04 人气:1

如何用C++语言链表实现学生信息管理系统

我有一图书资料管理系统代码,也是C++版的,你可以做一些修改拿去 //link_synthetize.cpp.数据结构-链表的综合运用-C++实现 #include #include #include using namespace std; class book { public: int num; float price; book *next; }; book *head=NULL;//全局变量 bool check(string
    A+
热门评论