-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMergeTwoSortedLists.java
More file actions
76 lines (63 loc) · 1.83 KB
/
MergeTwoSortedLists.java
File metadata and controls
76 lines (63 loc) · 1.83 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/**
* Leetcode problem #21, Merge Two Sorted Lists
* https://leetcode.com/problems/merge-two-sorted-lists
*/
public class MergeTwoSortedLists {
public static void main(String[] args) {
ListNode list1 = prepareList(new int[] { 1, 2, 4 });
ListNode list2 = prepareList(new int[] { 1, 3, 4 });
ListNode resList = mergeTwoLists(list1, list2);
printList(resList);
}
public static ListNode prepareList(int[] arr) {
ListNode currNode = new ListNode();
ListNode head = currNode;
for (int i : arr) {
currNode.next = new ListNode(i);
currNode = currNode.next;
}
return head.next;
}
public static void printList(ListNode list) {
while (list != null) {
System.out.print(list.val);
System.out.print(" ");
list = list.next;
}
System.out.println();
}
public static ListNode mergeTwoLists(ListNode list1, ListNode list2) {
ListNode currNode = new ListNode();
ListNode head = currNode;
while (list1 != null && list2 != null) {
if (list1.val <= list2.val) {
currNode.next = list1;
list1 = list1.next;
} else {
currNode.next = list2;
list2 = list2.next;
}
currNode = currNode.next;
}
if (list1 != null) {
currNode.next = list1;
}
if (list2 != null) {
currNode.next = list2;
}
return head.next;
}
static class ListNode {
int val;
ListNode next;
ListNode() {
}
ListNode(int val) {
this.val = val;
}
ListNode(int val, ListNode next) {
this.val = val;
this.next = next;
}
}
}