摘要: #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 阅读(201) 评论(0) 推荐(0) 编辑