义气板栗

文章
4
资源
0
加入时间
2年10月17天

数据结构与算法(C语言版)__链表的迭代器

STL中的链表#include<list>链表有一个迭代器,迭代器可以一个一个的输出数据,功能强大。今天我们也设计链表迭代器。 我们自己设计的链表迭代器//MyList.htemplate<class Type>class ListIterator{public: Boolean NotNull(); Boolean NextNotNull; Type* First(