Loading

摘要: typedef struct _MyListNode { int nData; struct _MyListNode * pNext; } MyListNode, *PMyListNode; class MyList { public: MyList() { pHead = new MyListNode(); pHead->nData = 0; pHead->pNext = NULL; pTail = NULL; } ~MyList() { MyListNode * pTmp = pHead; while (pTmp != NULL) { pHea... 阅读全文
posted @ 2013-01-04 09:58 androllen 阅读(441) 评论(0) 推荐(0)