C/C++鏈表知識

C語言/C++中鏈表的知識一直困擾着我,可是親自寫了一下函數,遍歷,查找,插入,刪除,頗有用耶。 一個程序學會一個知識點。 #include<iostream> #include<string> using namespace std; struct Student { string name; int score; struct Student* next; }; typedef Stu
相關文章
相關標籤/搜索