C++链表类 模板类

时间:2015-12-11 16:25:00
【文件属性】:

文件名称:C++链表类 模板类

文件大小:182KB

文件格式:RAR

更新时间:2015-12-11 16:25:00

C++ 链表 模板类

C++链表类 模板类 #include #include #include "LinkedList.h" using namespace std; template Node *LinkedList::GetNode(const T& item, Node* ptrNext) //生成新结点 { Node *p; p = new Node(item,ptrNext); if (p == NULL) { cout << "Memory allocation failure!\n"; exit(1); } return p; } ................


【文件预览】:
链表类
----LinkedList.h(2KB)
----LinkedList.cpp(7KB)
----Node.h(2KB)
----链表类.layout(555B)
----链表类.cbp(1KB)
----vc100.pdb(228KB)
----main.cpp(1021B)
----链表类.depend(374B)
----obj()
--------Debug()
----bin()
--------Debug()

网友评论

  • 不错很不错相当不错
  • 资源很好,值得看看。