-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMerge two sorted linked list
47 lines (43 loc) · 1.3 KB
/
Merge two sorted linked list
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
44
45
46
47
// Merge two sorted linked list - easy - 31/07/2023
// Iterative Approach
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
ListNode head = new ListNode();
ListNode ptr = head;
while(list1!=null && list2!=null){
if(list1.val <= list2.val){
head.next = new ListNode(list1.val);
list1 = list1.next;
}else {
head.next = new ListNode(list2.val);
list2 = list2.next;
}
head = head.next;
}
while(list1!=null){
head.next = new ListNode(list1.val);
list1 = list1.next;
head = head.next;
}
while(list2!=null){
head.next = new ListNode(list2.val);
list2 = list2.next;
head = head.next;
}
return ptr.next;
}
}
// Recursive
class Solution {
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
if (list1 == null) return list2;
if (list2 == null) return list1;
if (list1.val < list2.val) {
list1.next = mergeTwoLists(list1.next, list2);
return list1;
} else {
list2.next = mergeTwoLists(list1, list2.next);
return list2;
}
}
}