摘要: #include#includeusing namespace std;class Student{public: static int number; Student *build(int); friend void display(Student *head); Student *next; string name; float score;private: };//数据链表Student *build(int length){ Student *hold,*temp,*head; int counter=... 阅读全文
posted @ 2013-10-06 15:42 鱼时代 阅读(167) 评论(0) 推荐(0) 编辑