solution.md 4.6 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
<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>

F
fix bug  
feilong 已提交
15

每日一练社区's avatar
每日一练社区 已提交
16 17 18

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

每日一练社区's avatar
每日一练社区 已提交
19
<p><img src="https://img-blog.csdnimg.cn/img_convert/4a18acda10c1606aa5d1132b9de26d61.png#pic_center" /></p>
每日一练社区's avatar
每日一练社区 已提交
20 21 22

<pre>
<strong>输入:</strong>head = [3,2,0,-4], pos = 1
每日一练社区's avatar
每日一练社区 已提交
23

每日一练社区's avatar
每日一练社区 已提交
24
<strong>输出:</strong>返回索引为 1 的链表节点
每日一练社区's avatar
每日一练社区 已提交
25

每日一练社区's avatar
每日一练社区 已提交
26 27 28 29 30
<strong>解释:</strong>链表中有一个环,其尾部连接到第二个节点。
</pre>

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

每日一练社区's avatar
每日一练社区 已提交
31
<p><img src="https://img-blog.csdnimg.cn/img_convert/1a6fcfc68d7340c39151075f7fa53150.png#pic_center" /></p>
每日一练社区's avatar
每日一练社区 已提交
32 33 34

<pre>
<strong>输入:</strong>head = [1,2], pos = 0
每日一练社区's avatar
每日一练社区 已提交
35

每日一练社区's avatar
每日一练社区 已提交
36
<strong>输出:</strong>返回索引为 0 的链表节点
每日一练社区's avatar
每日一练社区 已提交
37

每日一练社区's avatar
每日一练社区 已提交
38 39 40 41 42
<strong>解释:</strong>链表中有一个环,其尾部连接到第一个节点。
</pre>

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

每日一练社区's avatar
每日一练社区 已提交
43
<p><img alt="" src="https://img-blog.csdnimg.cn/img_convert/3039274e08a9385ea77b20a81060ed40.png#pic_center" /></p>
每日一练社区's avatar
每日一练社区 已提交
44 45 46

<pre>
<strong>输入:</strong>head = [1], pos = -1
每日一练社区's avatar
每日一练社区 已提交
47

每日一练社区's avatar
每日一练社区 已提交
48
<strong>输出:</strong>返回 null
每日一练社区's avatar
每日一练社区 已提交
49

每日一练社区's avatar
每日一练社区 已提交
50 51 52
<strong>解释:</strong>链表中没有环。
</pre>

F
fix bug  
feilong 已提交
53

每日一练社区's avatar
每日一练社区 已提交
54 55 56 57 58 59 60 61 62

<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
每日一练社区 已提交
63
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
64

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

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

每日一练社区's avatar
每日一练社区 已提交
69
```c
每日一练社区's avatar
每日一练社区 已提交
70 71 72 73 74 75 76 77 78 79
#include <bits/stdc++.h>
using namespace std;

struct ListNode
{
    int val;
    ListNode *next;
    ListNode(int x) : val(x), next(NULL) {}
};
```
每日一练社区's avatar
每日一练社区 已提交
80

每日一练社区's avatar
每日一练社区 已提交
81
### after
F
fix bug  
feilong 已提交
82

每日一练社区's avatar
每日一练社区 已提交
83
```c
每日一练社区's avatar
每日一练社区 已提交
84 85 86 87

```

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

每日一练社区's avatar
每日一练社区 已提交
89
```c
每日一练社区's avatar
每日一练社区 已提交
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
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 已提交
123

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

每日一练社区's avatar
每日一练社区 已提交
126
```c
每日一练社区's avatar
每日一练社区 已提交
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
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 已提交
148

每日一练社区's avatar
每日一练社区 已提交
149
```c
每日一练社区's avatar
每日一练社区 已提交
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 176 177 178 179 180 181 182
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 已提交
183

每日一练社区's avatar
每日一练社区 已提交
184
```c
每日一练社区's avatar
每日一练社区 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
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;
    }
};
```