数据结构链表操作代码 源代码 1.头文件 //双循环链表类的定义 template struct Node { T data; Node *next; Node *prior; }; template class DLinkList { private: Node *Head; public: DLinkList) ;//构造函数 创建空双循环链表 ~D