题目
leetcode21-合并两个有序链表
中文链接:
https://leetcode-cn.com/problems/merge-two-sorted-lists/
英文链接:
https://leetcode.com/problems/merge-two-sorted-lists/
题目详述
将两个有序链表合并为一个新的有序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
示例:
输入:1->2->4, 1->3->4输出:1->1->2->3->4->4
题目详述
思路
代码
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
ListNode temp = new ListNode(-1);
ListNode result = temp;
while(l1 != null && l2 != null)
{
if(l1.val < l2.val)
{
temp.next = l1;
l1 = l1.next;
temp = temp.next;
}else{
temp.next = l2;
l2 = l2.next;
temp = temp.next;
}
}
if(l1 == null)
temp.next = l2;
if(l2 == null)
temp.next = l1;
return result.next;
}
}
代码讲解