leetcode 簡單 206 反轉鍊錶

2021-10-10 12:21:16 字數 1941 閱讀 3387

題目:

思路1:雙指標

1、cur.next指向pre,tmp暫存cur.next

2、pre和cur前進一格,

注意:不能讓pre=head,這樣還要判斷pre.next存在不

# definition for singly-linked list.

# class listnode:

# def __init__(self, x):

# self.val = x

# self.next = none

class

solution

:def

reverselist

(self, head: listnode)

-> listnode:

pre=

none

cur=head

while cur:

tmp=cur.

next

cur.

next

=pre

pre=cur

cur=tmp

return pre

class

solution

return pre;

}}

思路2:遞迴(效率不如第一種高)

1、結束條件是本節點或下一節點為空,cur=self.reverselist(head.next),head.next=5的時候迴圈結束,即返回cur=5,head為4

2、head.next.next=4.next.next=5.next,即5的下一節點指向4

3、4.next設為none,防止4和5形成迴圈

4、再往上走一層,此時reverselist(head.next)=reverselist(4)=reverselist(3.next)的時候停止迴圈,返回4,即head=3

# definition for singly-linked list.

# class listnode:

# def __init__(self, x):

# self.val = x

# self.next = none

class

solution

:def

reverselist

(self, head: listnode)

-> listnode:

ifnot head or

not head.

next

:return head

cur=self.reverselist(head.

next

) head.

next

.next

=head

head.

next

=none

return cur

class

solution

listnode node=

reverselist

(head.next)

;//舊煉表尾,新煉表頭

head.next.next=head;

head.next=

null

;return node;

}}

leetcode 反轉鍊錶(206)

反轉乙個單鏈表。示例 輸入 1 2 3 4 5 null 輸出 5 4 3 2 1 null 官方給出了不同的解答方式,其中有一種迭代方式,迭代是比較消耗資源的,個人不贊成使用,在此處,我只進行1種方式的描述 1.翻轉過程中使用三個變數,乙個pre,cur,讓pre與cur的下乙個元素通過指標連線起...

leetcode 206 鍊錶反轉

一 題目大意 反轉乙個單鏈表,實現遞迴和非遞迴兩種形式 二 鍊錶節點 public class listnode 三,分析 1,非遞迴解決方案 最容易想到的是使用三個指標,p1,p2,p3,遍歷鍊錶事項反轉。這裡需要注意的是,p1,p2,p3的初始化,不同初始化應該考慮煉表頭的不同處理。一般的初始是...

LeetCode 206 反轉鍊錶

反轉乙個單鏈表。高階 鍊錶可以迭代或遞迴地反轉。你能否兩個都實現一遍?設定三個指標分別指向連續的三個節點,每次完成節點的反向就把三個節點同時後移,直到所有節點反轉。definition for singly linked list.struct listnode class solution ret...