-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21.合并两个有序链表.py
43 lines (39 loc) · 981 Bytes
/
21.合并两个有序链表.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# @lc app=leetcode.cn id=21 lang=python3
#
# [21] 合并两个有序链表
#
# %%
# @lc code=start
# Definition for singly-linked list.
class ListNode:
def __init__(self, val=0, next=None):
self.val = val
self.next = next
class Solution:
def mergeTwoLists(self, l1, l2):
if not l1:
return l2
if not l2:
return l1
if l1.val > l2.val:
l2.next = self.mergeTwoLists(l1, l2.next)
return l2
else:
l1.next = self.mergeTwoLists(l1.next, l2)
return l1
def mergeTwoListsLoop(self, l1, l2):
prehead = ListNode(-1)
prev = prehead
while l1 and l2:
if l1.val > l2.val:
prev.next = l2
l2 = l2.next
else:
prev.next = l1
l1 = l1.next
prev = prev.next
prev.next = l1 if l1 else l2
return prehead.next
# @lc code=end
# %%