博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
待解决
阅读量:5266 次
发布时间:2019-06-14

本文共 2265 字,大约阅读时间需要 7 分钟。

给定一个单链表,只给出头指针h:

1、如何判断是否存在环?

2、如何知道环的长度?

3、如何找出环的连接点在哪里?

4、带环链表的长度是多少?

解法:

1、对于问题1,使用追赶的方法,设定两个指针slow、fast,从头指针开始,每次分别前进1步、2步。如存在环,则两者相遇;如不存在环,fast遇到NULL退出。

2、对于问题2,记录下问题1的碰撞点p,slow、fast从该点开始,再次碰撞所走过的操作数就是环的长度s。

3、问题3:有定理:碰撞点p到连接点的距离=头指针到连接点的距离,因此,分别从碰撞点、头指针开始走,相遇的那个点就是连接点。(证明在后面附注)

4、问题3中已经求出连接点距离头指针的长度,加上问题2中求出的环的长度,二者之和就是带环单链表的长度

 

链表有环无环解决,寻找链接点。报错(显示在一个无环链做寻找连接点时,星标行出现空指针),使用其他人的有环无环判断代码后,成功。如下为错误代码:

public class Solution {

    public ListNode detectCycle(ListNode head) {
        if(head==null||head.next==null||head.next.next==null||head.next.next.next==null) return null;
        ListNode pre=new ListNode(0);
        pre.next=head;
        ListNode p=pre.next;
        ListNode q=pre.next;
        while(p!=null&&q.next!=null){
            p=p.next;
            q=q.next.next;
            if(q==null)
                return null;
            if(q==p)
                break;
        }
        //有环
        ListNode preTem=head;
        while(preTem!=null){
            if(p==preTem)
                return p;
            preTem=preTem.next;
            p=p.next;********************************
        }
        return null;
    }
}

成功代码:

public ListNode detectCycle(ListNode head) {

        if(head==null) return null;
        ListNode slow=head;
        ListNode fast=head;
        do{
            if(fast.next==null||fast.next.next==null)
                return null;
            fast=fast.next.next;
            slow=slow.next;
        }
        while(fast!=slow);
    
        ListNode temp=head;
        while(temp!=null){
            if(fast==temp)
                return fast;
            temp=temp.next;
            fast=fast.next;
        }
        return null;
    }

 

 

缺乏头节点时,添加头节点后,以后的对于链表的表示都用这个头节点来表示。

203题:删除一个结点。结点的赋值到底什么含义。。。。。

 public static ListNode removeElements(ListNode head, int val) {

         if(head==null) return head;
            ListNode p=new ListNode(0);
            p.next=head;
            ListNode q=head;
            while(q!=null){
                if(q.val==val){
                    p.next=q.next;
                    q=null;//已经置为null,head却没改变。。。
                    q=p.next;
                }else{
                    p=p.next;
                    q=q.next;
                }
            }
            
            return head;   
        }//不通过,更改为下:通过

public ListNode removeElements(ListNode head, int val) {

        if(head==null) return head;
        ListNode p=new ListNode(0);
        p.next=head;
        ListNode q=head;
        ListNode s=p;
        while(q!=null){
            if(q.val==val){
                p.next=q.next;
                q=null;
                q=p.next;
            }else{
                p=p.next;
                q=q.next;
            }
        }
        
        return s.next;
    }

如下也错

public static ListNode removeElements(ListNode head, int val) {

         ListNode pListNode=new ListNode(0);
         pListNode.next=head;
         ListNode sListNode=head;
         while(head!=null){
             if(head.val==val){
                 pListNode.next=head.next;
                 head=null;
                 head=pListNode.next;
             }else{         
                 pListNode=pListNode.next;
                 head=head.next;
             }
         }
         return sListNode;
                
        }

转载于:https://www.cnblogs.com/litian0605/p/5186161.html

你可能感兴趣的文章
TCP为什么需要3次握手与4次挥手(转载)
查看>>
IOC容器
查看>>
Windows 2003全面优化
查看>>
URAL 1002 Phone Numbers(KMP+最短路orDP)
查看>>
web_day4_css_宽度
查看>>
electron入门心得
查看>>
格而知之2:UIView的autoresizingMask属性探究
查看>>
我的Hook学习笔记
查看>>
js中的try/catch
查看>>
寄Android开发Gradle你需要知道的知识
查看>>
简述spring中常有的几种advice?
查看>>
整理推荐的CSS属性书写顺序
查看>>
ServerSocket和Socket通信
查看>>
css & input type & search icon
查看>>
源代码的下载和编译读后感
查看>>
Kafka学习笔记
查看>>
Octotree Chrome安装与使用方法
查看>>
Windows 环境下基于 Redis 的 Celery 任务调度模块的实现
查看>>
趣谈Java变量的可见性问题
查看>>
C# 强制关闭当前程序进程(完全Kill掉不留痕迹)
查看>>