leetcode206_反轉鏈表_迭代+遞歸

一. 迭代函數 1. 有pre, cur還要保存cur->next.3d class Solution { public: ListNode* reverseList(ListNode* head) { if(head==NULL || head->next==NULL) return head; //前驅指針,cur須要指向它.
相關文章
相關標籤/搜索