劍指Offer-Java-合併兩個排序的鏈表

合併兩個排序的鏈表


題目:
輸入兩個單調遞增的鏈表,輸出兩個鏈表合成後的鏈表,當然我們需要合成後的鏈表滿足單調不減規則。
代碼:

package com.hlq.test;

/**
 * @author helongqiang
 * @date 2020/5/18 20:58
 */

/**
 * 輸入兩個單調遞增的鏈表,輸出兩個鏈表合成後的鏈表,
 * 當然我們需要合成後的鏈表滿足單調不減規則。
 */

public class Solution {

    public ListNode Merge(ListNode list1,ListNode list2){
        ListNode h = new ListNode(-1);
        ListNode cur = h;
        while (list1 != null && list2 != null){
            if(list1.val <= list2.val){
                cur.next = list1;
                list1 = list1.next;
            }else{
                cur.next = list2;
                list2 = list2.next;
            }
            cur = cur.next;
        }
        if (list1 != null){
            cur.next = list1;
        }
        if(list2 != null){
            cur.next = list2;
        }
        return h.next;
    }
}

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