solution.md 4.8 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 环形链表 II
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
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
<p>给定一个链表,返回链表开始入环的第一个节点。 如果链表无环,则返回 <code>null</code></p>

<p>为了表示给定链表中的环,我们使用整数 <code>pos</code> 来表示链表尾连接到链表中的位置(索引从 0 开始)。 如果 <code>pos</code><code>-1</code>,则在该链表中没有环。<strong>注意,<code>pos</code> 仅仅是用于标识环的情况,并不会作为参数传递到函数中。</strong></p>

<p><strong>说明:</strong>不允许修改给定的链表。</p>

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

<ul>
	<li>你是否可以使用 <code>O(1)</code> 空间解决此题?</li>
</ul>

<p> </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>返回索引为 1 的链表节点
<strong>解释:</strong>链表中有一个环,其尾部连接到第二个节点。
</pre>

<p><strong>示例 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>返回索引为 0 的链表节点
<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>返回 null
<strong>解释:</strong>链表中没有环。
</pre>

<p> </p>

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

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

每日一练社区's avatar
每日一练社区 已提交
57
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
58

每日一练社区's avatar
每日一练社区 已提交
59
## aop
F
fix bug  
feilong 已提交
60

每日一练社区's avatar
每日一练社区 已提交
61
### before
F
fix bug  
feilong 已提交
62

每日一练社区's avatar
每日一练社区 已提交
63 64 65 66 67 68 69 70 71 72 73 74
```cpp
#include <bits/stdc++.h>
using namespace std;

struct ListNode
{
    int val;
    ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
```
### after
F
fix bug  
feilong 已提交
75

每日一练社区's avatar
每日一练社区 已提交
76 77 78 79 80
```cpp

```

## 答案
F
fix bug  
feilong 已提交
81

每日一练社区's avatar
每日一练社区 已提交
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
```cpp
class Solution
{
public:
    vector<int> searchRange(vector<int> &nums, int target)
    {
        int left = 0;
        int right = nums.size() - 1;
        vector<int> res = {-1, -1};
        bool find = false;
        while (right >= left && find == false && nums[left] <= target)
        {
            int mid = (left + right) / 2;
            if (nums[mid] > target)
                right = mid - 1;
            else if (nums[mid] < target)
                left = mid + 1;
            else
            {
                find = true;
                while (mid > 0 && nums[mid - 1] == target)
                    mid++;
                res[0] = mid;
                while (mid < nums.size() - 1 && nums[mid + 1] == target)
                    mid--;
                res[1] = mid;
            }
        }
        return res;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
116

每日一练社区's avatar
每日一练社区 已提交
117
### A
F
fix bug  
feilong 已提交
118

每日一练社区's avatar
每日一练社区 已提交
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
```cpp
class Solution
{
public:
    ListNode *detectCycle(ListNode *head)
    {
        set<ListNode *> node_set;
        while (head)
        {
            if (node_set.find(head) != node_set.end())
            {
                return head;
            }
            node_set.insert(head);
            head = head->next;
        }
        return NULL;
    }
};
```

### B
F
fix bug  
feilong 已提交
141

每日一练社区's avatar
每日一练社区 已提交
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 169 170 171 172 173 174 175
```cpp
class Solution
{
public:
    ListNode *detectCycle(ListNode *head)
    {
        ListNode *slow = head;
        ListNode *fast = head;
        ListNode *meet = NULL;
        while (slow && fast && fast->next)
        {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast)
            {
                meet = slow;
                break;
            }
        }
        while (head && meet)
        {
            if (meet == head)
            {
                break;
            }
            head = head->next;
            meet = meet->next;
        }
        return meet;
    }
};
```

### C
F
fix bug  
feilong 已提交
176

每日一练社区's avatar
每日一练社区 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
```cpp
class Solution
{
public:
    ListNode *detectCycle(ListNode *head)
    {
        if (!head || !head->next)
            return NULL;
        ListNode *slow = head, *fast = head;
        while (fast && fast->next)
        {
            slow = slow->next;
            fast = fast->next->next;
            if (slow == fast)
                break;
        }
        if (slow != fast)
            return NULL;
        slow = head;
        while (slow != fast)
        {
            slow = slow->next;
            fast = fast->next;
        }
        return slow;
    }
};
```