标签:表

yan阅读(3150)评论(0)赞(0)
template<class Node_entry> struct Node{ Node_entry entry; Node <Node_entry> * next; Node(); Node(Node_entry,...

yan阅读(2590)评论(0)赞(0)
#define max_list 10 template<class List_entry> class List{ public: List(); int size() const; bool full() const; bo...