zoukankan      html  css  js  c++  java
  • 合并两个排序的链表

    题目:输入两个单调递增的链表,输出两个链表合成后的链表,当然我们需要合成后的链表满足单调不减规则。

    思路:题目相对简单,有两个思路,一个是遍历两个链表的公共长度,按值的大小把各个节点连接起来,最后把较长链表的剩余部分追加到最后。第二个思路,这个类似于自然合并排序,可以使用递归分治的思想来解决问题,还让你容易就能把这个问题分解成子问题。

    实现代码

    非递归:

    /*
    public class ListNode {
        int val;
        ListNode next = null;
    
        ListNode(int val) {
            this.val = val;
        }
    }*/
    public class Solution {
        public ListNode Merge(ListNode list1,ListNode list2) {
            if(list1 == null)
                return list2;
            if(list2 == null)
                return list1;
            
            ListNode head;
            if(list1.val<=list2.val) {
                head = list1;
                list1 = list1.next;
            }
            else {
                head = list2;
                list2 = list2.next;
            }
            
            ListNode pNode = head;
            
            while(list1 != null && list2 != null) {
                if(list1.val <= list2.val) {
                    pNode.next = list1;
                    list1 = list1.next;
                }
                else {
                    pNode.next = list2;
                    list2 = list2.next;
                }
                pNode = pNode.next;
            }
            
            while(list1 != null) {
                pNode.next = list1;
                pNode = pNode.next;
                list1 = list1.next;
            }
            
            while(list2 != null) {
                pNode.next = list2;
                pNode = pNode.next;
                list2 = list2.next;
            }
            
            return head;
        }
    }

    递归:

    /*
    public class ListNode {
        int val;
        ListNode next = null;
     
        ListNode(int val) {
            this.val = val;
        }
    }*/
    public class Solution {
        public ListNode Merge(ListNode list1,ListNode list2) {
            if(list1 == null)
                return list2;
            if(list2 == null)
                return list1;
             
            ListNode head;
             
            if(list1.val < list2.val) {
                head = list1;
                head.next = Merge(list1.next, list2);
            }
            else {
                head = list2;
                head.next = Merge(list1, list2.next);
            }
            return head;
        }
    }
  • 相关阅读:
    137. Single Number II (Bit)
    136. Single Number (Bit)
    89. Gray Code (Bit)
    57. Insert Interval (Array; Sort)
    56. Merge Intervals (Array; Sort)
    UNIX 网络编程笔记-CH3:套接字编程简介
    UNIX 网络编程笔记-CH2:TCP、UDP概貌
    TSP-旅行商问题
    Java 集合:迭代器(Iterator, Iterable)
    PAT 1029. Median
  • 原文地址:https://www.cnblogs.com/wxisme/p/5295374.html
Copyright © 2011-2022 走看看