linked-list-cycle-ii

本文介绍了一种使用快慢指针检测链表中循环开始节点的算法。通过首先确认链表是否存在环,然后找到环的入口节点,此方法在链表操作中非常实用。

题目描述

  • Given a linked list, return the node where the cycle begins. If there is no cycle, return null.
  • 翻译:给定链表,返回循环开始的节点。 如果没有循环,则返回null。

分析

  • 先使用快慢指针,确定链表是否存在环,并且确定快指针和慢指针相等的节点。
  • 利用一个指针从头节点开始向后移动,慢指针从当前位置开始向后移动,当慢指针的next为指针时停止即可。
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
class Solution {
public:
    ListNode *detectCycle(ListNode *head) {
        if(head==nullptr || head->next==nullptr)
            return nullptr;
        ListNode *low=head;
        ListNode *fast=head->next;
        while(fast!=nullptr && fast->next!=nullptr && low!=fast){
            low=low->next;
            fast=fast->next->next;
        }
        if(fast==nullptr || fast->next==nullptr)
            return nullptr;
        ListNode *cur=head;
        while(low->next!=cur){
            cur=cur->next;
            low=low->next;
        }
        return cur;
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值