題目:輸入兩個(gè)單調(diào)遞增的鏈表约炎,輸出兩個(gè)鏈表合成后的鏈表律姨,當(dāng)然我們需要合成后的鏈表滿足單調(diào)不減規(guī)則。
練習(xí)地址
https://www.nowcoder.com/practice/d8b6b4358f774294a89de2a6ac4d9337
https://leetcode-cn.com/problems/he-bing-liang-ge-pai-xu-de-lian-biao-lcof/
參考答案
/*
public class ListNode {
int val;
ListNode next = null;
ListNode(int val) {
this.val = val;
}
}*/
public class Solution {
public ListNode Merge(ListNode list1, ListNode list2) {
if (list1 == null) {
return list2;
}
if (list2 == null) {
return list1;
}
ListNode head = null;
if (list1.val < list2.val) {
head = list1;
head.next = Merge(list1.next, list2);
} else {
head = list2;
head.next = Merge(list1, list2.next);
}
return head;
}
}
復(fù)雜度分析
- 時(shí)間復(fù)雜度:O(n)。
- 空間復(fù)雜度:O(n)羡藐。