LeetCode21- 合併兩個有序鏈表

將兩個有序鏈表合併爲一個新的有序鏈表並返回。新鏈表是通過拼接給定的兩個鏈表的所有節點組成的。 

示例:

輸入: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 list;
        ListNode head = new ListNode( 0 );
        list = head;
        ListNode p = l1 , q = l2;
        while( l1 != null && l2 != null ) {
            if ( l1.val < l2.val ) {
                head.next = new ListNode( l1.val );
                l1 = l1.next;
                head = head.next;
            }
            else {
                head.next = new ListNode( l2.val );
                l2 = l2.next;
                head = head.next;
            }
        }
        while( l1 != null ) {
            head.next = new ListNode( l1.val );
            l1 = l1.next;
            head = head.next;
        }
        while ( l2 != null ) {
            head.next = new ListNode( l2.val );
            l2 = l2.next;
            head = head.next;
        }
        
        return list.next;
    }
}

 運行結果:

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章