蒟蒻来水3种思路 💧

合并两个排序的链表

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

1.思路:直接改变2个链表的内部指针指向,融合为一个大链表;👇

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 *   public ListNode(int val) {
 *     this.val = val;
 *   }
 * }
 */

public class Solution {
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     *
     * @param pHead1 ListNode类
     * @param pHead2 ListNode类
     * @return ListNode类
     */
    public ListNode Merge(ListNode pHead1, ListNode pHead2) {
        if (pHead2 == null) return pHead1;
        if (pHead1 == null) return pHead2;
        ListNode ans = pHead1;
        if (pHead1.val > pHead2.val) {
            ans = pHead2;
        }
        ListNode pre1 = pHead1;
        ListNode pre2 = pHead2;
        while (pHead1 != null && pHead2 != null) {
            if (pHead1.val <= pHead2.val) {
                while (pHead1 != null && pHead1.val <= pHead2.val) {
                    pre1 = pHead1;
                    pHead1 = pHead1.next;
                }
                pre1.next = pHead2;
            } else {
                while (pHead2 != null && pHead2.val < pHead1.val) {
                    pre2 = pHead2;
                    pHead2 = pHead2.next;
                }
                pre2.next = pHead1;
            }
        }
        return ans;
    }
}

2.思路:将第二个链表的所有元素,都插入到第一个链表中去;(记得用虚拟头结点)👇

   public ListNode Merge(ListNode pHead1, ListNode pHead2) {
        if (pHead2 == null) return pHead1;
        if (pHead1 == null) return pHead2;
        ListNode dummy = new ListNode(-1);
        dummy.next = pHead1;
        ListNode pre = dummy;
        while (pHead2 != null) {
            while (pHead1 != null && pHead1.val < pHead2.val) {
                pre = pHead1;
                pHead1 = pHead1.next;
            }
            pre.next = new ListNode(pHead2.val);
            pre.next.next = pHead1;
            pre = pre.next;
            pHead2 = pHead2.next;
        }

        return dummy.next;
    }

3.思路:新建一个链表,将两个链表的元素整合到新链表,并返回新链表;👇

 public ListNode Merge(ListNode pHead1, ListNode pHead2) {
            if(pHead2==null)return pHead1;
            if(pHead1==null)return pHead2;
            ListNode first = pHead1;
            ListNode second = pHead2;
            ListNode ans1 = new ListNode(-1);
            ListNode ans = ans1;
            while (first != null && second != null) {
                if (first.val < second.val) {
                    ans.next = new ListNode((first.val));
                    first = first.next;
                } else {
                    ans.next = new ListNode((second.val));
                    second = second.next;
                }
                ans = ans.next;
            }
            while (second != null) {
                ans.next = new ListNode((second.val));
                second = second.next;
                ans = ans.next;
            }
            while (first != null) {
                ans.next = new ListNode((first.val));
                first = first.next;
                ans = ans.next;
            }
            return ans1.next;
        }

全部评论

相关推荐

头像 会员标识
11-27 17:08
已编辑
牛客_产品运营部_私域运营
腾讯 普通offer 24k~26k * 15,年包在36w~39w左右。
点赞 评论 收藏
分享
Yushuu:你的确很厉害,但是有一个小问题:谁问你了?我的意思是,谁在意?我告诉你,根本没人问你,在我们之中0人问了你,我把所有问你的人都请来 party 了,到场人数是0个人,誰问你了?WHO ASKED?谁问汝矣?誰があなたに聞きましたか?누가 물어봤어?我爬上了珠穆朗玛峰也没找到谁问你了,我刚刚潜入了世界上最大的射电望远镜也没开到那个问你的人的盒,在找到谁问你之前我连癌症的解药都发明了出来,我开了最大距离渲染也没找到谁问你了我活在这个被辐射蹂躏了多年的破碎世界的坟墓里目睹全球核战争把人类文明毁灭也没见到谁问你了😆
点赞 评论 收藏
分享
斑驳不同:还为啥暴躁 假的不骂你骂谁啊
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务