Skip to content

Commit 7c01e13

Browse files
committed
Time: 1 ms (82.48%), Space: 43.2 MB (39.72%) - LeetHub
1 parent 2f56f6c commit 7c01e13

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/**
2+
* Definition for singly-linked list.
3+
* public class ListNode {
4+
* int val;
5+
* ListNode next;
6+
* ListNode() {}
7+
* ListNode(int val) { this.val = val; }
8+
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
9+
* }
10+
*/
11+
class Solution {
12+
public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
13+
ListNode tempNode = new ListNode(0);
14+
ListNode currentNode = tempNode;
15+
16+
while(list1 != null && list2 != null) {
17+
if(list1.val < list2.val) {
18+
currentNode.next = list1;
19+
list1 = list1.next;
20+
} else {
21+
currentNode.next = list2;
22+
list2 = list2.next;
23+
}
24+
currentNode = currentNode.next;
25+
}
26+
27+
if(list1 != null) {
28+
currentNode.next = list1;
29+
list1 = list1.next;
30+
} else if(list2 != null){
31+
currentNode.next = list2;
32+
list2 = list2.next;
33+
}
34+
35+
return tempNode.next;
36+
37+
}
38+
}

0 commit comments

Comments
 (0)