• LeetCode:Linked List Cycle II


    Given a linked list, return the node where the cycle begins. If there is no cycle, return null.

    Follow up:
    Can you solve it without using extra space?

    思路:第一次按照Linked List Cycle的解法去做,果断超时。最后参考了网上的思路如下:

    (1)定义slow和fast指针,都指向head结点,然后slow指针每次向后走1个结点,fast指针每次向后走2个结点。

    (2)如果fast指针为空,则说明不存在环;如果fast指针和slow指针相等,则说明存在环。

    (3)存在环时将slow指针指向head结点,然后slow指针和fast指针每次都向后走一个结点。

    (4)如果slow指针和fast指针相等,该处结点就是环的开始结点,返回slow指针。

    本文参考了:http://blog.csdn.net/cs_guoxiaozhu/article/details/14209743

     1 /**
     2  * Definition for singly-linked list.
     3  * struct ListNode {
     4  *     int val;
     5  *     ListNode *next;
     6  *     ListNode(int x) : val(x), next(NULL) {}
     7  * };
     8  */
     9 class Solution {
    10 public:
    11     ListNode *detectCycle(ListNode *head) {
    12         if(head==NULL||head->next==NULL)
    13                 return NULL;
    14         ListNode *slow=head,*fast=head;
    15             while(fast!=NULL)
    16             {
    17                 slow=slow->next;
    18                 fast=fast->next;
    19                 if(fast!=NULL)
    20                     fast=fast->next;
    21                 if(slow==fast)
    22                 {
    23                     slow=head;
    24                     while(slow!=fast)
    25                     {
    26                         slow=slow->next;
    27                         fast=fast->next;
    28                     }
    29                     return slow;
    30                 }
    31             }
    32             return NULL;
    33     }
    34 };
  • 相关阅读:
    软件工程团队作业2.1——《业务流程模型》
    软件工程团队作业1——《调研提纲》
    2020软件工程第四次作业
    作业四(一)
    17074230 团队项目选题报告
    计算与软件工程 作业5
    计算与软件工程 作业4
    17074230 第三次作业
    17074230 第二次作业
    17074230 赵雅雅 第一次作业
  • 原文地址:https://www.cnblogs.com/levicode/p/3978094.html
Copyright © 2020-2023  润新知