摘要: 1 #include <iostream> 2 using namespace std; 3 4 struct Student 5 { 6 int score; 7 Student* next; 8 }; 9 //创建全局变量 10 Student* head = NULL; 11 //代码改进 1 阅读全文
posted @ 2019-04-11 21:59 littlelittleprince 阅读(730) 评论(0) 推荐(0) 编辑