逆轉單鏈表

問題 思路 cur = pre->next; post = cur=>next; cur->next = pre; cur = post; 代碼  ListNode* reverseList(ListNode *root) { if (root == NULL) return root; ListNode *cur = root; ListNode *pre
相關文章
相關標籤/搜索