題目描述
反轉乙個單鏈表
示例:
輸入: 1->2->3->4->5->null題解思路輸出: 5->4->3->2->1->null
迭代思路
邊界條件:當只有零個或乙個節點時,返回頭節點指標即可;
建立以第乙個節點新的煉表頭,新表頭 next 為 null;
從第二個節點遍歷鍊錶,從頭部插入新的鍊錶,臨時指標 temp 存放 next 節點指標;
遞迴思路
在函式內部遞迴改變節點指向:head -> next -> next = head;
ac**
迭代演算法:
struct listnode*
reverselist
(struct listnode* head)
struct listnode *p = head -> next;
struct listnode *newhead = head;
newhead -> next =
null
;struct listnode *temp =
null
;while
(p !=
null
)return newhead;
}
遞迴演算法:
struct listnode*
reverselist
(struct listnode* head)
struct listnode *p =
reverselist
(head -> next)
; head -> next -> next = head;
head -> next =
null
;return p;
}
leetcode 206 鍊錶反轉
一 題目大意 反轉乙個單鏈表,實現遞迴和非遞迴兩種形式 二 鍊錶節點 public class listnode 三,分析 1,非遞迴解決方案 最容易想到的是使用三個指標,p1,p2,p3,遍歷鍊錶事項反轉。這裡需要注意的是,p1,p2,p3的初始化,不同初始化應該考慮煉表頭的不同處理。一般的初始是...
LeetCode 206 反轉鍊錶
反轉乙個單鏈表。高階 鍊錶可以迭代或遞迴地反轉。你能否兩個都實現一遍?設定三個指標分別指向連續的三個節點,每次完成節點的反向就把三個節點同時後移,直到所有節點反轉。definition for singly linked list.struct listnode class solution ret...
LeetCode 206 反轉鍊錶
206.反轉鍊錶 反轉乙個單鏈表。輸入 1 2 3 4 5 null 輸出 5 4 3 2 1 null非遞迴解法 1.class solution object defreverselist self,head type head listnode rtype listnode res none ...