Skip to content

Commit b27e95e

Browse files
committed
更新题解图片链接微本地链接
1 parent 1437672 commit b27e95e

File tree

107 files changed

+302
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+302
-302
lines changed

docs/ch01/01.02/01.02.03-Exercises.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
- 示例 1:
2121

22-
![](https://assets.leetcode.com/uploads/2020/08/28/mat1.jpg)
22+
![](../../images/20201024004801.jpg)
2323

2424
```python
2525
输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
@@ -28,7 +28,7 @@
2828

2929
- 示例 2:
3030

31-
![](https://assets.leetcode.com/uploads/2020/08/28/mat2.jpg)
31+
![](../../images/20201024004802.jpg)
3232

3333
```python
3434
输入:matrix = [[5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16]]
@@ -54,7 +54,7 @@
5454

5555
- 示例 1:
5656

57-
![](https://assets.leetcode.com/uploads/2020/11/13/spiral1.jpg)
57+
![](../../images/20201024005401.jpg)
5858

5959
```python
6060
输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
@@ -63,7 +63,7 @@
6363

6464
- 示例 2:
6565

66-
![](https://assets.leetcode.com/uploads/2020/11/13/spiral.jpg)
66+
![](../../images/20201024005402.jpg)
6767

6868
```python
6969
输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
@@ -90,7 +90,7 @@
9090

9191
- 示例 1:
9292

93-
![](https://assets.leetcode.com/uploads/2021/04/10/diag1-grid.jpg)
93+
![](../../images/20201024049801.jpg)
9494

9595
```python
9696
输入:mat = [[1,2,3],[4,5,6],[7,8,9]]

docs/ch01/01.05/01.05.01-Array-Two-Pointers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ class Solution:
224224

225225
**示例**
226226

227-
![](https://aliyun-lc-upload.oss-cn-hangzhou.aliyuncs.com/aliyun-lc-upload/uploads/2018/07/25/question_11.jpg)
227+
![](../../images/20201024001101.jpg)
228228

229229
```python
230230
输入:[1,8,6,2,5,4,8,3,7]

docs/ch02/02.01/02.01.02-Exercises.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ linkedList.get(1); // 返回 3
7070

7171
**示例**
7272

73-
![](https://assets.leetcode.com/uploads/2021/03/06/removelinked-list.jpg)
73+
![](../../images/20201024020301.jpg)
7474

7575
```python
7676
输入:head = [1,2,6,3,4,5,6], val = 6

docs/ch02/02.01/02.01.03-Exercises.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717

1818
**示例**
1919

20-
![](https://assets.leetcode.com/uploads/2021/03/10/oddeven-linked-list.jpg)
20+
![](../../images/20201024032801.jpg)
2121

2222
```python
2323
输入: head = [1,2,3,4,5]
2424
输出: [1,3,5,2,4]
2525
```
2626

27-
![](https://assets.leetcode.com/uploads/2021/03/10/oddeven2-linked-list.jpg)
27+
![](../../images/20201024032802.jpg)
2828

2929
```python
3030
输入: head = [2,1,3,5,6,4,7]
@@ -46,14 +46,14 @@
4646

4747
**示例**
4848

49-
![](https://assets.leetcode.com/uploads/2021/03/03/pal1linked-list.jpg)
49+
![](../../images/20201024023401.jpg)
5050

5151
```python
5252
输入:head = [1,2,2,1]
5353
输出:True
5454
```
5555

56-
![](https://assets.leetcode.com/uploads/2021/03/03/pal2linked-list.jpg)
56+
![](../../images/20201024023402.jpg)
5757

5858
```python
5959
输入:head = [1,2]
@@ -76,14 +76,14 @@
7676

7777
**示例**
7878

79-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/01/09/e1.png)
79+
![](../../images/20201024013801.png)
8080

8181
```python
8282
输入:head = [[7,null],[13,0],[11,4],[10,2],[1,0]]
8383
输出:[[7,null],[13,0],[11,4],[10,2],[1,0]]
8484
```
8585

86-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/01/09/e2.png)
86+
![](../../images/20201024013802.png)
8787

8888
```python
8989
输入:head = [[1,1],[2,1]]

docs/ch02/02.01/02.01.06-Exercises.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919

2020
**示例**
2121

22-
![](https://assets.leetcode.com/uploads/2021/03/04/sort1linked-list.jpg)
22+
![](../../images/20201024014701.jpg)
2323

2424
```python
2525
输入: head = [4,2,1,3]
2626
输出: [1,2,3,4]
2727
```
2828

29-
![](https://assets.leetcode.com/uploads/2021/03/04/sort2linked-list.jpg)
29+
![](../../images/20201024014702.jpg)
3030

3131
```python
3232
输入: head = [-1,5,3,4,0]
@@ -49,7 +49,7 @@
4949

5050
**示例**
5151

52-
![](https://assets.leetcode.com/uploads/2020/10/03/merge_ex1.jpg)
52+
![](../../images/20201024002101.jpg)
5353

5454
```python
5555
输入:list1 = [1,2,4], list2 = [1,3,4]
@@ -75,14 +75,14 @@
7575

7676
**示例**
7777

78-
![](https://assets.leetcode.com/uploads/2020/09/14/sort_list_1.jpg)
78+
![](../../images/20201024014801.jpg)
7979

8080
```python
8181
输入:head = [4,2,1,3]
8282
输出:[1,2,3,4]
8383
```
8484

85-
![](https://assets.leetcode.com/uploads/2020/09/14/sort_list_2.jpg)
85+
![](../../images/20201024014802.jpg)
8686

8787
```python
8888
输入:head = [-1,5,3,4,0]

docs/ch02/02.01/02.01.08-Linked-List-Two-Pointers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ while fast:
5858

5959
**示例**
6060

61-
![](https://assets.leetcode.com/uploads/2020/10/03/remove_ex1.jpg)
61+
![](../../images/20201024001901.jpg)
6262

6363
```python
6464
输入:head = [1,2,3,4,5], n = 2
@@ -234,15 +234,15 @@ class Solution:
234234

235235
**示例**
236236

237-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist.png)
237+
![](../../images/20201024014101.png)
238238

239239
```python
240240
输入:head = [3,2,0,-4], pos = 1
241241
输出:True
242242
解释:链表中有一个环,其尾部连接到第二个节点。
243243
```
244244

245-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png)
245+
![](../../images/20201024014202.png)
246246

247247
```python
248248
输入:head = [1,2], pos = 0
@@ -359,7 +359,7 @@ while left_1 and left_2:
359359

360360
**示例**
361361

362-
![](https://assets.leetcode.com/uploads/2020/10/03/merge_ex1.jpg)
362+
![](../../images/20201024002101.jpg)
363363

364364
```python
365365
输入:list1 = [1,2,4], list2 = [1,3,4]

docs/ch02/02.01/02.01.09-Exercises.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616

1717
**示例**
1818

19-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist.png)
19+
![](../../images/20201024014101.png)
2020

2121
```python
2222
输入:head = [3,2,0,-4], pos = 1
2323
输出:True
2424
解释:链表中有一个环,其尾部连接到第二个节点。
2525
```
2626

27-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png)
27+
![](../../images/20201024014202.png)
2828

2929
```python
3030
输入:head = [1,2], pos = 0
@@ -48,15 +48,15 @@
4848

4949
**示例**
5050

51-
![](https://assets.leetcode.com/uploads/2018/12/07/circularlinkedlist.png)
51+
![](../../images/20201024014201.png)
5252

5353
```python
5454
输入:head = [3,2,0,-4], pos = 1
5555
输出:返回索引为 1 的链表节点
5656
解释:链表中有一个环,其尾部连接到第二个节点。
5757
```
5858

59-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/12/07/circularlinkedlist_test2.png)
59+
![](../../images/20201024014202.png)
6060

6161
```python
6262
输入:head = [1,2], pos = 0
@@ -82,7 +82,7 @@
8282

8383
**示例**
8484

85-
![](https://assets.leetcode.com/uploads/2020/10/03/remove_ex1.jpg)
85+
![](../../images/20201024001901.jpg)
8686

8787
```python
8888
输入:head = [1,2,3,4,5], n = 2

docs/ch02/02.03/02.03.01-DFS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ class Solution:
264264

265265
**示例**
266266

267-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/02/01/133_clone_graph_question.png)
267+
![](../../images/20201024013301.png)
268268

269269
```python
270270
输入:adjList = [[2,4],[1,3],[2,4],[1,3]]
@@ -277,7 +277,7 @@ class Solution:
277277
节点 4 的值是 4,它有两个邻居:节点 13
278278
```
279279

280-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/02/01/graph-1.png)
280+
![](../../images/20201024013302.png)
281281

282282
```python
283283
输入:adjList = [[2],[1]]

docs/ch02/02.03/02.03.02-Exercises.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
**示例**
5858

59-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/02/01/133_clone_graph_question.png)
59+
![](../../images/20201024013301.png)
6060

6161
```python
6262
输入:adjList = [[2,4],[1,3],[2,4],[1,3]]
@@ -69,7 +69,7 @@
6969
节点 4 的值是 4,它有两个邻居:节点 13
7070
```
7171

72-
![](https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2020/02/01/graph-1.png)
72+
![](../../images/20201024013302.png)
7373

7474
```python
7575
输入:adjList = [[2],[1]]

docs/ch02/02.03/02.03.03-Exercises.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
**示例**
5656

57-
![](https://assets.leetcode.com/uploads/2021/05/01/maxarea1-grid.jpg)
57+
![](../../images/20201024069501.jpg)
5858

5959
```python
6060
输入:grid = [[0,0,1,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,1,1,0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,1,0,1,0,0],[0,1,0,0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,1,1,0,0,0,0]]
@@ -83,7 +83,7 @@
8383

8484
**示例**
8585

86-
![](https://assets.leetcode.com/uploads/2021/02/19/xogrid.jpg)
86+
![](../../images/20201024013001.jpg)
8787

8888
```python
8989
输入:board = [["X","X","X","X"],["X","O","O","X"],["X","X","O","X"],["X","O","X","X"]]

0 commit comments

Comments
 (0)