码迷,mamicode.com
首页 > 其他好文 > 详细

[leetcode]Merge Two Sorted Lists

时间:2017-04-28 23:38:42      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:div   ade   sorted   int   nod   should   content   style   art   

问题描写叙述:

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.

代码:

import java.util.List;


public class Merge_Two_Sorted_Lists {  //java

	  public class ListNode {
	      int val;
	      ListNode next;
	      ListNode(int x) {
	          val = x;
	          next = null;
	      }
	  }
	 
	
    public ListNode mergeTwoLists(ListNode l1, ListNode l2) {
        if(l2 == null)
        	return l1;
        if(l1 == null)
        	return l2;
        
        ListNode tmp1 = l1;
        ListNode tmp2 = l2;
        ListNode head = new ListNode(0);
        ListNode result = head;
        while(tmp1 != null && tmp2 != null){
        	if(tmp1.val > tmp2.val){
        		ListNode node = new ListNode(tmp2.val);
        		result.next = node;
        		result = result.next;
        		tmp2 = tmp2.next;
        	}
        	
        	else{
        		ListNode node = new ListNode(tmp1.val);
        		result.next = node;
        		result = result.next;
        		tmp1 = tmp1.next;
        	}
        }
        
        if(tmp2 == null)
        	result.next = tmp1;
        else result.next = tmp2;
        
        return head.next;
        	
    }

}


[leetcode]Merge Two Sorted Lists

标签:div   ade   sorted   int   nod   should   content   style   art   

原文地址:http://www.cnblogs.com/mthoutai/p/6783451.html

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