码迷,mamicode.com
首页 > 编程语言 > 详细

链表——(循环和递归)合并两个排序链表

时间:2016-05-12 21:51:18      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

题目:合并两个递增排序链表,使新链表仍然按照递增排序。


方法一:

基于递归的方法,链表first和链表second各有m和n个结点,新链表的头结点为两个链表中头结点较小

的一个,当找到该头结点时(假设为first的头结点),仍需对first的m-1个结点和second的n个结点合并。

可以看出,子问题和原问题相同,因此可以利用递归解决。

代码如下:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public ListNode mergeTwoLists(ListNode first, ListNode second) {
        
        if(first==null)
            return second;
        if(second==null)
            return first;
        
        ListNode head=null;
        
        if(first.val<second.val)
            {
            head=first; 
            head.next=mergeTwoLists(first.next,second);
        }else
            {
            head=second;
             head.next=mergeTwoLists(first,second.next);
        }
        return head;
    }
}


方法二:

基于循环,对两个链表的结点逐个进行比较。

代码如下:

public class Solution {
    public ListNode mergeTwoLists(ListNode first, ListNode second) {
        if(first==null)
            return second;
        if(second==null)
            return first;
        
        ListNode head=null;
        ListNode temp=null;
        ListNode cur =null;
        
        //当first和second都没有到各自链表的结尾;
        while(first!=null&&second!=null)
            {
            if(first.val<second.val)
                {
                temp=first;
                first=first.next;
            }else
                {
                temp=second;
                second=second.next;
            }
            
            if(head==null)
                {
                head=temp;
                cur=temp;
            }else
                {
                cur.next=temp;
                cur=temp;
            } 
        }
        //first和second中的一个到链表的结尾;
        if(first!=null)
            {
            cur.next=first;
        }else
            {
            cur.next=second;
        }
        
        return head;     
    }
}



链表——(循环和递归)合并两个排序链表

标签:

原文地址:http://blog.csdn.net/jingsuwen1/article/details/51354223

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!