10 2013 档案
摘要:#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=...
阅读全文