C/C++链表知识

C语言/C++中链表的知识一直困扰着我,可是亲自写了一下函数,遍历,查找,插入,删除,颇有用耶。 一个程序学会一个知识点。 #include<iostream> #include<string> using namespace std; struct Student { string name; int score; struct Student* next; }; typedef Stu
相关文章
相关标签/搜索