學生成績(鏈表)

#include<iostream> #include<string> using namespace std; struct Student{ string name; string score; Student *next;//定義了指向Candidate類型變量的指針 }; Student * Create(Student * head){ Student *p=NULL; Stu
相關文章
相關標籤/搜索