2->4,?1->3->4輸出:1->1->2->3->4->4#?Defin..."/>
您好,登錄后才能下訂單哦!
將兩個(gè)有序鏈表合并為一個(gè)新的有序鏈表并返回。新鏈表是通過(guò)拼接給定的兩個(gè)鏈表的所有節(jié)點(diǎn)組成的。?
示例:
輸入:1->2->4,?1->3->4輸出:1->1->2->3->4->4
#?Definition?for?singly-linked?list. #?class?ListNode: #?????def?__init__(self,?x): #?????????self.val?=?x #?????????self.next?=?None class?Solution: ????def?mergeTwoLists(self,?l1:?ListNode,?l2:?ListNode)?->?ListNode: ????????root?=?ListNode(None) ????????cur?=?root ????????cur.next ????????while?l1?and?l2: ????????????if?l1.val?<?l2.val: ????????????????node?=?ListNode(l1.val) ????????????????l1?=?l1.next ????????????else: ????????????????node?=?ListNode(l2.val) ????????????????l2?=?l2.next ????????????cur.next?=?node ????????????#?讓cur?前移 ????????????cur?=?node ????????#?操作剩余的值 ????????cur.next?=?l1?or?l2 ????????return?root.next
執(zhí)行用時(shí) :?100 ms, 在Merge Two Sorted Lists的Python3提交中擊敗了13.41% 的用戶
內(nèi)存消耗 :?13 MB, 在Merge Two Sorted Lists的Python3提交中擊敗了87.35% 的用戶
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。