摘要: /*如果采用单向链表,end()函数如何表示? *所以必须得采用循环链表的方式? * */#ifndef LIST#define LIST#includeusing namespace std;//声明template struct Node{ T data; struct Node* next; ... 阅读全文
posted @ 2015-06-15 16:30 朱传林 阅读(138) 评论(0) 推荐(0)