摘要:
1 #ifndef _LIST_H__ 2 #define _LIST_H__ 3 #include 4 template class List; 5 6 7 template 8 class Link 9 { 10 friend class List; 11 12 private: 13 Type m_Data; 14 Link* m_Next; 15 Link* m_Pre; 16 Link(const Type& Val, Link* Next, Link* Pre); 17 18 }; 19 20 templ... 阅读全文