学生成绩(链表)

#include<iostream> #include<string> using namespace std; struct Student{ string name; string score; Student *next;//定义了指向Candidate类型变量的指针 }; Student * Create(Student * head){ Student *p=NULL; Stu
相关文章
相关标签/搜索