摘要:
typedef struct LNode {int data;struct LNode *next;}LNode, *pLinkList;//类的声明class LinkList {private: pLinkList m_pList; int m_listLength;public: LinkList();~LinkList(); bool InitList (); bool DestroyLi... 阅读全文
摘要:
赋值到VC上即可运行调试。typedef struct LNode{int data;struct LNode *next;}LNode, *pLinkList;//类的声明class LinkList {private:pLinkList m_pList;int m_listLength;public:LinkList();~LinkList();bool InitList ();bool De... 阅读全文