Skip to content

Commit 6a7ef98

Browse files
author
杨世超
committed
更新相关内容链接
1 parent 8a81c34 commit 6a7ef98

14 files changed

+29
-35
lines changed

docs/00_preface/00_04_leetcode_guide.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -183,20 +183,14 @@ LeetCode 的题目序号并不是按照难易程度进行排序的,所以除
183183

184184
或者直接按照我整理的分类刷题列表进行刷题:
185185

186-
- 刷题列表(GitHub 版)链接:[点击打开「GitHub 版分类刷题列表」](https://github.com/ITCharge/AlgoNote/tree/main/Contents/00.Introduction/05.Categories-List.md)
187-
- 刷题列表(网页版)链接:[点击打开「网页版分类刷题列表」](https://algo.itcharge.cn/00.Introduction/05.Categories-List/)
186+
- LeetCode 分类刷题列表:[点击打开「LeetCode 分类刷题列表」](https://github.com/itcharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md)
188187

189188
正在准备面试、没有太多时间刷题的小伙伴,可以按照我总结的「LeetCode 面试最常考 100 题」、「LeetCode 面试最常考 200 题」进行刷题。
190189

191190
> **说明**:「LeetCode 面试最常考 100 题」、「LeetCode 面试最常考 200 题」是笔者根据「[CodeTop 企业题库](https://codetop.cc/home)」按频度从高到低进行筛选,并且去除了一部分 LeetCode 上没有的题目和重复题目后得到的题目清单。
192191
193-
- 「LeetCode 面试最常考 100 题(GitHub 版)」链接:[点击打开「LeetCode 面试最常考 100 题(GitHub 版)」](https://github.com/ITCharge/AlgoNote/tree/main/Contents/00.Introduction/06.Interview-100-List.md)
194-
- 「LeetCode 面试最常考 200 题(GitHub 版)」链接:[点击打开「LeetCode 面试最常考 200 题(GitHub 版)」](https://github.com/ITCharge/AlgoNote/tree/main/Contents/00.Introduction/07.Interview-200-List.md)
195-
196-
---
197-
198-
- 「LeetCode 面试最常考 100 题(网页版)」链接:[点击打开「LeetCode 面试最常考 100 题(网页版)」](https://algo.itcharge.cn/00.Introduction/06.Interview-100-List/)
199-
- 「LeetCode 面试最常考 200 题(网页版)」链接:[点击打开「LeetCode 面试最常考 200 题(网页版)」](https://algo.itcharge.cn/00.Introduction/07.Interview-200-List/)
192+
- 「LeetCode 面试最常考 100 题:[点击打开「LeetCode 面试最常考 100 题」](https://github.com/itcharge/AlgoNote/tree/main/docs/00_preface/00_07_interview_100_list.md)
193+
- 「LeetCode 面试最常考 200 题:[点击打开「LeetCode 面试最常考 200 题」](https://github.com/itcharge/AlgoNote/tree/main/docs/00_preface/00_08_interview_200_list.md)
200194

201195
### 3.3 LeetCode 刷题技巧
202196

docs/00_preface/00_07_interview_100_list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# LeetCode 面试最常考 200 题(按分类排序)
1+
# LeetCode 面试最常考 100 题(按分类排序)
22

33
## 第 1 章 数组
44

docs/01_array/01_06_array_shell_sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ class Solution:
9999
## 练习题目
100100

101101
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
102-
- [0506. 相对名次](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0500-0599/relative-ranks.md)
102+
- [0506. 相对名次](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0500-0599/relative-ranks.md)
103103

104104
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_07_array_merge_sort.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ class Solution:
8787

8888

8989
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
90-
- [0088. 合并两个有序数组](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0001-0099/merge-sorted-array.md)
91-
- [LCR 170. 交易逆序对的总数](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/LCR/shu-zu-zhong-de-ni-xu-dui-lcof.md)
92-
- [0315. 计算右侧小于当前元素的个数](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0300-0399/count-of-smaller-numbers-after-self.md)
90+
- [0088. 合并两个有序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0001-0099/merge-sorted-array.md)
91+
- [LCR 170. 交易逆序对的总数](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/LCR/shu-zu-zhong-de-ni-xu-dui-lcof.md)
92+
- [0315. 计算右侧小于当前元素的个数](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0300-0399/count-of-smaller-numbers-after-self.md)
9393

9494

9595
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_08_array_quick_sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ class Solution:
147147
## 练习题目
148148

149149
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
150-
- [0169. 多数元素](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0100-0199/majority-element.md)
150+
- [0169. 多数元素](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0100-0199/majority-element.md)
151151

152152
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)
153153

docs/01_array/01_09_array_heap_sort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ print(Solution().sortArray([10, 25, 6, 8, 7, 1, 20, 23, 16, 19, 17, 3, 18, 14]))
381381
## 练习题目
382382

383383
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
384-
- [0215. 数组中的第K个最大元素](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0200-0299/kth-largest-element-in-an-array.md)
385-
- [LCR 159. 库存管理 III](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/LCR/zui-xiao-de-kge-shu-lcof.md)
384+
- [0215. 数组中的第K个最大元素](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0200-0299/kth-largest-element-in-an-array.md)
385+
- [LCR 159. 库存管理 III](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/LCR/zui-xiao-de-kge-shu-lcof.md)
386386

387387
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_10_array_counting_sort.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ class Solution:
7373
## 练习题目
7474

7575
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
76-
- [1122. 数组的相对排序](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/1100-1199/relative-sort-array.md)
76+
- [1122. 数组的相对排序](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/1100-1199/relative-sort-array.md)
7777

7878
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_11_array_bucket_sort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Solution:
7676
## 练习题目
7777

7878
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
79-
- [0220. 存在重复元素 III](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0200-0299/contains-duplicate-iii.md)
80-
- [0164. 最大间距](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0100-0199/maximum-gap.md)
79+
- [0220. 存在重复元素 III](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0200-0299/contains-duplicate-iii.md)
80+
- [0164. 最大间距](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0100-0199/maximum-gap.md)
8181

8282
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_12_array_radix_sort.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Solution:
6767
## 练习题目
6868

6969
- [0912. 排序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0900-0999/sort-an-array.md)
70-
- [0164. 最大间距](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0100-0199/maximum-gap.md)
71-
- [0561. 数组拆分](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0500-0599/array-partition.md)
70+
- [0164. 最大间距](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0100-0199/maximum-gap.md)
71+
- [0561. 数组拆分](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0500-0599/array-partition.md)
7272

7373
- [排序算法题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95%E9%A2%98%E7%9B%AE)

docs/01_array/01_13_array_binary_search_01.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ class Solution:
158158

159159
## 练习题目
160160

161-
- [0704. 二分查找](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0700-0799/binary-search.md)
162-
- [0374. 猜数字大小](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0300-0399/guess-number-higher-or-lower.md)
163-
- [0035. 搜索插入位置](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0001-0099/search-insert-position.md)
164-
- [0167. 两数之和 II - 输入有序数组](https://github.com/itcharge/AlgoNote/blob/main/docs/solutions/0100-0199/two-sum-ii-input-array-is-sorted.md)
161+
- [0704. 二分查找](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0700-0799/binary-search.md)
162+
- [0374. 猜数字大小](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0300-0399/guess-number-higher-or-lower.md)
163+
- [0035. 搜索插入位置](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0001-0099/search-insert-position.md)
164+
- [0167. 两数之和 II - 输入有序数组](https://github.com/ITCharge/AlgoNote/tree/main/docs/solutions/0100-0199/two-sum-ii-input-array-is-sorted.md)
165165

166166
- [二分查找题目列表](https://github.com/ITCharge/AlgoNote/tree/main/docs/00_preface/00_06_categories_list.md#%E4%BA%8C%E5%88%86%E6%9F%A5%E6%89%BE%E9%A2%98%E7%9B%AE)

0 commit comments

Comments
 (0)