【力扣】142. 环形链表 II

一、题目描述:

给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
为了表示给定链表中的环,我们使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 pos 是 -1,则在该链表中没有环。
说明:不允许修改给定的链表。

示例 1:
在这里插入图片描述

输入:head = [3,2,0,-4], pos = 1
输出:tail connects to node index 1
解释:链表中有一个环,其尾部连接到第二个节点。

示例 2:
在这里插入图片描述

输入:head = [1,2], pos = 0
输出:tail connects to node index 0
解释:链表中有一个环,其尾部连接到第一个节点。

示例 3:
在这里插入图片描述

输入:head = [1], pos = -1
输出:no cycle
解释:链表中没有环。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/linked-list-cycle-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

二、解题思路:

1、如果是空链表或者链表只有一个节点,返回null。
2、使用快慢指针找到slow和fast重合的节点。
3、带环的情况, 设定两个引用, 分别从链表头部和fast、slow交点出发, 按照相同的速度同步往后走。当两个引用的内存地址相同时,就找到环的入口。在这里插入图片描述

三、代码描述:

/**
 * 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;
      ListNode fast=head;
    while(fast!=null&&fast.next!=null){
      slow=slow.next;
      fast=fast.next.next;
      //两个节点重合,跳出循环,此时链表就是带环的
      if(slow==fast){
        break; 
      }
    }
    // 因上面的while循环不知是因节点重合退出循环还是fast==null或fast.next==null退出循环,需做判断。
    if(fast==null||fast.next==null){
        // 链表不带环
        return null;
    }
    ListNode cur1=fast;
    ListNode cur2=head;
    while(cur1!=cur2){
     cur1=cur1.next;
     cur2=cur2.next;
    }
    //环的入口
    return cur1;
   }
  }
发布了75 篇原创文章 · 获赞 14 · 访问量 1902

猜你喜欢

转载自blog.csdn.net/qq_45328505/article/details/104574341
今日推荐