LeetCode,leetcodeoj

來源:互聯網
上載者:User

LeetCode,leetcodeoj
題目描述:
Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.


就是把兩個已經排序的鏈表進行合并。


思路:
將鏈表l2合并到l1中,逐個遍曆l2
如果l1不是最後一個:
l1<=l2 && l2 <= l1.next  :移除l2,將l2放在l1.next
l2 < l1 : 將l2.next=l1 並替換頭結點
else: l1=l1.next
如果l1是最後結點:
l2 > l1:l1.next = l2
else : 將l2.next = l1並替換頭結點




實現代碼:

/** * Definition for singly-linked list. * public class ListNode { *     public int val; *     public ListNode next; *     public ListNode(int x) { val = x; } * } */public class Solution {    public ListNode MergeTwoLists(ListNode l1, ListNode l2) {    if(l1 == null){return l2;}if(l2 == null){return l1;}// merge l2 into l1ListNode head = l1;while(l2 != null){if(l1.next != null){if(l2.val >= l1.val && l2.val <= l1.next.val){var t = Remove(ref l2);t.next = l1.next;l1.next = t;}else if(l2.val < l1.val){var t = Remove(ref l2);t.next = l1;head = t;l1 = t;}else{l1 = l1.next;}}else{if(l1.val < l2.val){l1.next = Remove(ref l2);}else{var t = Remove(ref l2);t.next = l1;head = t;l1 = t;}}}return head;    }        private ListNode Remove(ref ListNode n)    {            ListNode t = new ListNode(n.val);    if(n.next == null){    n = null;    }    else{    n.val = n.next.val;    n.next = n.next.next;    }    return t;    }}


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.