合併兩個有序鍊錶

2021-09-26 19:38:54 字數 1251 閱讀 9420

1,leetcodecn上合併兩個有序鍊錶:將兩個有序鍊錶合併為乙個新的有序鍊錶並返回。新煉表是通過拼接給定的兩個鍊錶的所有節點組成的。 

示例:輸入:1->2->4, 1->3->4

輸出:1->1->2->3->4->4

def mergetwolists(l1, l2):

head = none

node = head

while l1 != none and l2 != none:

if l1.val < l2.val:

if head == none:

head = l1

node = head

else:

node.next = l1

node = node.next

l1 = l1.next

else:

if head == none:

head = l2

node = head

else:

node.next = l2

node = node.next

l2 = l2.next

if l1 != none:

if head == none:

head = l1

else:

node.next = l1

if l2 != none:

if head == none:

head = l2

else:

node.next = l2

return head

上面自己自己寫的**,申明了兩個 listnode, 下面貼出官方的**,瞬間覺的我要**,我的**冗餘。

def mergetwolists(self, l1, l2):

prehead = listnode(-1)

prev = prehead

while l1 and l2:

if l1.val <= l2.val:

prev.next = l1

l1 = l1.next

else:

prev.next = l2

l2 = l2.next

prev = prev.next

prev.next = l1 if l1 is not none else l2

return prehead.next

一句**的誤差,引發的血案。謹記。。。。

合併兩個有序鍊錶

鍊錶的題目總是讓我很惆悵。動輒就會runtime error。比如這題,額外用了乙個節點的空間來儲存頭節點。我很不情願多用這個空間,不過貌似不行。貌似不行,實際可行,見附錄。把頭節點提出迴圈 實現類 class solution else if l1 null p next l1 if l2 nul...

合併兩個有序鍊錶

三個指標乙個儲存la鍊錶 乙個儲存lb鍊錶,乙個指向新的鍊錶。鍊錶的插入,兩個指標,乙個是head,乙個指向head後面的鏈,新插入的元素位於head後面。執行該 自己外加上class類。static class node public static void main string args st...

合併兩個有序鍊錶

將兩個有序鍊錶合併為乙個新的有序鍊錶並返回。新煉表是通過拼接給定的兩個鍊錶的所有節點組成的。示例 輸入 1 2 4,1 3 4 輸出 1 1 2 3 4 4思路 很簡單就是二路歸併的思想,時間複雜度o n definition for singly linked list.struct listno...