数据结构学习(C++)之单链表
数据结构学习(C++)之单链表2008-01-05节点类#ifndef Node_H#define Node_Htemplate <class Type> class Node //单链节点类{ public: Type data; Node<Type> *link; Node() : data(Type()), link(NULL) {} Node(const Type &item) : data(item), l...