AcWing 36. 合并两个排序的链表-java
原题链接
简单
作者:
jkm
,
2021-03-27 15:39:59
,
所有人可见
,
阅读 553
java合并两个排序的链表
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode merge(ListNode l1, ListNode l2) {
ListNode head = new ListNode(-1);
ListNode tail = head;
while (l1 != null && l2 != null) {
if (l1.val > l2.val) {
tail.next = l2;
l2 = l2.next;
} else {
tail.next = l1;
l1 = l1.next;
}
tail = tail.next;
}
if (l1 != null)
tail.next = l1;
if (l2 != null)
tail.next = l2;
return head.next;
}
}