如下图分析
class Solution { public: ListNode* reverseList(ListNode* head) { if(!head||!head->next) return head; auto p=reverseList(head->next); head->next->next=head; head->next=NULL; return p; } };
提醒一下,return p 中的p一直都是h(5)
提醒一下,return p 中的p一直都是h(5)