题解 | #合并两个排序的链表#

合并两个排序的链表

http://www.nowcoder.com/practice/d8b6b4358f774294a89de2a6ac4d9337

/*
public class ListNode {
    int val;
    ListNode next = null;

    ListNode(int val) {
        this.val = val;
    }
}*/
public class Solution {
    public ListNode Merge(ListNode list1,ListNode list2) {
        ListNode result = new ListNode(0);
        ListNode head = result;
        ListNode temp;
        while(!(list1==null || list2==null)){
            if(list1.val<=list2.val){
                temp = new ListNode(list1.val);
                list1 = list1.next;
            }
            else {
                temp = new ListNode(list2.val);
                list2 = list2.next;
            }
            result.next = temp;
            temp = temp.next;
            result = result.next;
        }
        if(list1!=null){
            while(list1!=null){
                temp = new ListNode(list1.val);
                list1 = list1.next;
                result.next = temp;
                temp = temp.next;
                result = result.next;
            }
        }
        else if(list2!=null){
            while(list2!=null){
                temp = new ListNode(list2.val);
                list2 = list2.next;
                result.next = temp;
                temp = temp.next;
                result = result.next;
            }
        }
        return head.next;
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 12:05
点赞 评论 收藏
分享
05-29 09:02
门头沟学院 Java
点赞 评论 收藏
分享
07-01 13:37
门头沟学院 Java
steelhead:不是你的问题,这是社会的问题。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务