博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
leetcode----142. Linked List Cycle II
阅读量:4112 次
发布时间:2019-05-25

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

链接:

大意:

给定一个单链表的头结点,该链表可能有环,找出该链表环的入口节点。如果没有环,则返回空。例子:

思路:

使用快慢指针法。具体证明方法参考:

代码:

/** * Definition for singly-linked list. * class ListNode { *     int val; *     ListNode next; *     ListNode(int x) { *         val = x; *         next = null; *     } * } */public class Solution {    public ListNode detectCycle(ListNode head) {        if (head == null || head.next == null)            return null;        ListNode slow = head, fast = head;        while (fast.next != null && fast.next.next != null) {            fast = fast.next.next;            slow = slow.next;            if (fast == slow)                break;        }        // 没有环的情况        if (fast.next == null || fast.next.next == null)            return null;        fast = head;        while (fast != slow) {            fast = fast.next;            slow = slow.next;        }        return slow;    }}

结果:

结论:

思路很巧妙,题目很经典 

 

 

 

转载地址:http://vxesi.baihongyu.com/

你可能感兴趣的文章
Linux系统编程——线程池
查看>>
Linux C++线程池实例
查看>>
shared_ptr的一些尴尬
查看>>
C++总结8——shared_ptr和weak_ptr智能指针
查看>>
c++写时拷贝1
查看>>
Linux网络编程---I/O复用模型之poll
查看>>
Java NIO详解
查看>>
在JS中 onclick="save();return false;"return false是
查看>>
idea 有时提示找不到类或者符号
查看>>
matplotlib.pyplot.plot()参数详解
查看>>
MFC矩阵运算
查看>>
ubuntu 安装mysql
查看>>
c# 计算器
查看>>
C# 简单的矩阵运算
查看>>
gcc 常用选项详解
查看>>
c++输出文件流ofstream用法详解
查看>>
firewalld的基本使用
查看>>
Linux下SVN客户端使用教程
查看>>
Linux分区方案
查看>>
nc 命令详解
查看>>