摘要:
#include #include typedef struct ListNode{int m_nValue;ListNode *m_pNext;}ListNode;ListNode *createListNode(int value){ListNode *node = new ListNode();node->m_nValue = value;node->m_pNext = NULL;return node;}void connectListNode(ListNode *currentNode, ListNode *nextNode){ if(currentNode == NUL 阅读全文
posted @ 2013-08-27 11:50
lysxc
阅读(211)
评论(0)
推荐(0)
浙公网安备 33010602011771号