我是靠谱客的博主 霸气音响,最近开发中收集的这篇文章主要介绍力扣第24题 中等难度 两两交换链表中的节点,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

先看一眼题:
在这里插入图片描述

草稿纸上画个图,就知道指针该怎么连了,草稿纸太乱了,就不贴了,直接上代码吧:

public static ListNode swapPairs(ListNode head) {
        if(head==null||head.next==null)
            return head;
        if(head.next.next==null){
            head.next.next=head;
            ListNode p = head.next;
            head.next=null;
            return p;
        }
        ListNode p=null,q=null,r=null,pre=null,res=null;
        boolean first = true;
        p=head;
        q=p.next;
        r=q.next;
        while (q!=null){
            q.next=p;
            p.next=r;
            if(pre!=null)
                pre.next=q;
            try {
                r = r.next;
            }catch (NullPointerException e){
                r=null;
            }
            pre=q;
            if(first){
                res =pre;
                first=false;
            }
            q=p.next;
            try {
                r = r.next;
            }catch (NullPointerException e){
                r=null;
            }
            try {
                q = q.next;
            }catch (NullPointerException e){
                q=null;
            }
            p=p.next;
            pre=pre.next;
        }
        return res;
    }

在这里插入图片描述

最后

以上就是霸气音响为你收集整理的力扣第24题 中等难度 两两交换链表中的节点的全部内容,希望文章能够帮你解决力扣第24题 中等难度 两两交换链表中的节点所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部