2020年5月12日 星期二

[LeetCode] 21. Merge Two Sorted Lists* 解題思路 (Easy)



這題需要把兩個已經排序好的 ListNode 合併並且是排序好的狀態。




LeetCode 題目連結

 

https://leetcode.com/problems/merge-two-sorted-lists/

 

題目


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.
Example:
Input: 1->2->4, 1->3->4
Output: 1->1->2->3->4->4

Accept 作法


這題時間複雜度為 O(n),原本覺得難,但後來突然想通了之後覺得很簡單。


Runtime: 0 ms
Memory: 39.4 MB

Java 程式碼

  1. class Solution {
  2. public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
  3. if(l1 == null){
  4. return l2;
  5. }
  6. if(l2 == null){
  7. return l1;
  8. }
  9. ListNode cur = l1;
  10. ListNode cur2 = l2;
  11. ListNode head = new ListNode(0);
  12. ListNode p = head;
  13. while(cur!=null && cur2!=null){
  14. if(cur.val < cur2.val){
  15. p.next =cur;
  16. cur = cur.next;
  17. }else{
  18. p.next = cur2;
  19. cur2 = cur2.next;
  20. }
  21. p = p.next;
  22. }
  23. if(cur!=null){
  24. p.next = cur;
  25. }
  26. if(cur2!=null){
  27. p.next = cur2;
  28. }
  29. return head.next;
  30. }
  31. }

 

更多 LeetCode 相關資源

 

複習程式面試書籍


除了 LeetCode 練習外,我也入手了這本,題庫來自真正的面試,並非摘自教科書。它們反映出頂尖公司真正會出的題目,你可以藉此做好充分準備
需要的話可以看看,寫得很仔細。


書名:提升程式設計師的面試力:189道面試題目與解答



相關 LeetCode文章一律會放在 程式解題 標籤分類,歡迎持續追蹤。


沒有留言:

張貼留言