將兩個升序鏈表合併爲一個新的升序鏈表並返回。新鏈表是經過拼接給定的兩個鏈表的全部節點組成的

示例: 輸入:1->2->4, 1->3->4 輸出:1->1->2->3->4->4 代碼:java /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution
相關文章
相關標籤/搜索