solution.md 4.1 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
# 环形链表
<p>给定一个链表,判断链表中是否有环。</p>

<p>如果链表中有某个节点,可以通过连续跟踪 <code>next</code> 指针再次到达,则链表中存在环。 为了表示给定链表中的环,我们使用整数 <code>pos</code> 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 <code>pos</code><code>-1</code>,则在该链表中没有环。<strong>注意:<code>pos</code> 不作为参数进行传递</strong>,仅仅是为了标识链表的实际情况。</p>

<p>如果链表中存在环,则返回 <code>true</code> 。 否则,返回 <code>false</code></p>

<p>&nbsp;</p>

<p><strong>进阶:</strong></p>

<p>你能用 <em>O(1)</em>(即,常量)内存解决此问题吗?</p>

<p>&nbsp;</p>

<p><strong>示例 1:</strong></p>

<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist.png" style="height: 97px; width: 300px;"></p>

<pre><strong>输入:</strong>head = [3,2,0,-4], pos = 1
<strong>输出:</strong>true
<strong>解释:</strong>链表中有一个环,其尾部连接到第二个节点。
</pre>

<p><strong>示例&nbsp;2:</strong></p>

<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png" style="height: 74px; width: 141px;"></p>

<pre><strong>输入:</strong>head = [1,2], pos = 0
<strong>输出:</strong>true
<strong>解释:</strong>链表中有一个环,其尾部连接到第一个节点。
</pre>

<p><strong>示例 3:</strong></p>

<p><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test3.png" style="height: 45px; width: 45px;"></p>

<pre><strong>输入:</strong>head = [1], pos = -1
<strong>输出:</strong>false
<strong>解释:</strong>链表中没有环。
</pre>

<p>&nbsp;</p>

<p><strong>提示:</strong></p>

<ul>
	<li>链表中节点的数目范围是 <code>[0, 10<sup>4</sup>]</code></li>
	<li><code>-10<sup>5</sup> &lt;= Node.val &lt;= 10<sup>5</sup></code></li>
	<li><code>pos</code><code>-1</code> 或者链表中的一个 <strong>有效索引</strong></li>
</ul>

<p>以下错误的选项是?</p>
## aop
### before
```cpp
#include <bits/stdc++.h>
using namespace std;

struct ListNode
{
    int val;
    ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
```
### after
```cpp

```

## 答案
```cpp
class Solution
{
public:
    bool hasCycle(ListNode *head)
    {
        ListNode *low = head;
        ListNode *quick = head;
        while (low && quick && quick->next)
        {
            low = low->next;
            quick = quick->next;
            if (low == quick)
            {
                return true;
            }
        }
        return false;
    }
};
```
## 选项

### A
```cpp
class Solution
{
public:
    bool hasCycle(ListNode *head)
    {
        ListNode *q = head;
        while (q)
        {
            if (q->visit == true)
                return true;
            else
                q->visit = true;
        }
        return false;
    }
};
```

### B
```cpp
class Solution
{
public:
    bool hasCycle(ListNode *head)
    {
        if (head == NULL || head->next == NULL)
            return false;
        ListNode *k = head;
        ListNode *q = head->next;
        int count = 0;
        while (q)
        {
            for (int i = count; i > 0; i--)
            {
                k = k->next;
                if (k == q)
                    return true;
            }
            k = head;
            q = q->next;
            count++;
        }
        return false;
    }
};
```

### C
```cpp
class Solution
{
public:
    bool hasCycle(ListNode *head)
    {
        if (head == NULL || head->next == NULL)
            return false;
        ListNode *Snode = head;
        ListNode *Fnode = head->next;
        while (Snode != Fnode)
        {
            if (Fnode == NULL || Fnode->next == NULL)
            {
                return false;
            }
            Snode = Snode->next;
            Fnode = Fnode->next->next;
        }
        return true;
    }
};
```