摘要: 1 #include<iostream> 2 using namespace std; 3 template<class T> 4 struct Node 5 { 6 T data; 7 Node<T> *next; 8 }; 9 template<class T> 10 class LinkList 11 { 12 public: 13 LinkList(); 14 LinkList(T a[],int n); 15 ~LinkList(); 16 int length(); 17 ... 阅读全文
posted @ 2012-03-06 17:50 zh yu 阅读(221) 评论(0) 推荐(0) 编辑