摘要: 问题思路cur = pre->next;post = cur=>next;cur->next = pre;cur = post;代码ListNode* reverseList(ListNode *root){ if (root == NULL) return root; L... 阅读全文
posted @ 2014-01-18 10:41 jihite 阅读(1387) 评论(0) 推荐(0)