【強烈推薦】深入淺出數(shù)據(jù)結(jié)構(gòu) - 頂尖程序員圖文講解 - UP主翻譯校對 (已完

P11練習(xí) 使用局部變量遞歸反轉(zhuǎn)鏈表
Node* RecurrenceReverse(Node* head) {
Node* temp = head;
if (temp->next == NULL) {
head = temp;
return head;
}
head = RecurrenceReverse(head->next);
temp->next->next = temp;
temp->next = NULL;
return head;
}
標簽: