Skip to content

Commit 11476d8

Browse files
committedJul 19, 2021
update7.19字节题库
1 parent 26cc1bc commit 11476d8

File tree

7 files changed

+374
-266
lines changed

7 files changed

+374
-266
lines changed
 

‎README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@
2626

2727
:warning:使用本仓库的频度数据或转载文章,需注明本仓库地址!侵权必究!
2828

29+
## 字节跳动(更新至牛客2021.7.19的面经)
30+
<details>
31+
<summary>按岗位分类</summary>
32+
33+
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/backend.md)
34+
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/algorithm.md)
35+
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/client.md)
36+
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/frontend.md)
37+
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/test.md)
38+
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/data.md)
39+
</details>
40+
2941
## 亚马逊中国(更新至牛客2021.6.9的面经)
3042
- [SDE](https://github.com/afatcoder/LeetcodeTop/blob/master/amazon/SDE.md)
3143

@@ -44,17 +56,7 @@
4456
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/shopee/data.md)
4557
</details>
4658

47-
## 字节跳动(更新至牛客2021.4.30的面经)
48-
<details>
49-
<summary>按岗位分类</summary>
50-
51-
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/backend.md)
52-
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/algorithm.md)
53-
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/client.md)
54-
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/frontend.md)
55-
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/test.md)
56-
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/data.md)
57-
</details>
59+
5860

5961
## 美团(更新至牛客2021.4.23面经)
6062
<details>

‎bytedance/algorithm.md

Lines changed: 52 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,53 @@
44
|题目|出现次数|链接|
55
|-|-|-|
66
|72. 编辑距离|8|https://leetcode-cn.com/problems/edit-distance|
7+
|103. 二叉树的锯齿形层次遍历|7|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
8+
|215. 数组中的第K个最大元素|6|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
9+
|236. 二叉树的最近公共祖先|6|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
710
|300. 最长上升子序列|6|https://leetcode-cn.com/problems/longest-increasing-subsequence|
8-
|103. 二叉树的锯齿形层次遍历|5|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
9-
|215. 数组中的第K个最大元素|4|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
10-
|33. 搜索旋转排序数组|3|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
11-
|200. 岛屿数量|3|https://leetcode-cn.com/problems/number-of-islands|
11+
|200. 岛屿数量|5|https://leetcode-cn.com/problems/number-of-islands|
12+
|33. 搜索旋转排序数组|4|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
13+
|69. x 的平方根|4|https://leetcode-cn.com/problems/sqrtx|
14+
|3. 无重复字符的最长子串|3|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
15+
|23. 合并K个排序链表|3|https://leetcode-cn.com/problems/merge-k-sorted-lists|
1216
|4. 寻找两个正序数组的中位数|3|https://leetcode-cn.com/problems/median-of-two-sorted-arrays|
17+
|剑指 Offer 29. 顺时针打印矩阵|3|https://leetcode-cn.com/problems/shun-shi-zhen-da-yin-ju-zhen-lcof|
18+
|695. 岛屿的最大面积|3|https://leetcode-cn.com/problems/max-area-of-island|
1319
|240. 搜索二维矩阵 II|3|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
1420
|102. 二叉树的层序遍历|3|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
15-
|236. 二叉树的最近公共祖先|3|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
21+
|49. 字母异位词分组|3|https://leetcode-cn.com/problems/group-anagrams|
22+
|209. 长度最小的子数组|3|https://leetcode-cn.com/problems/minimum-size-subarray-sum|
23+
|85. 最大矩形|3|https://leetcode-cn.com/problems/maximal-rectangle|
24+
|287. 寻找重复数|3|https://leetcode-cn.com/problems/find-the-duplicate-number|
1625
|64. 最小路径和|3|https://leetcode-cn.com/problems/minimum-path-sum|
26+
|5. 最长回文子串|3|https://leetcode-cn.com/problems/longest-palindromic-substring|
27+
|46. 全排列|3|https://leetcode-cn.com/problems/permutations|
28+
|121. 买卖股票的最佳时机|3|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
1729
|15. 三数之和|3|https://leetcode-cn.com/problems/3sum|
1830
|394. 字符串解码|3|https://leetcode-cn.com/problems/decode-string|
1931
|110. 平衡二叉树|2|https://leetcode-cn.com/problems/balanced-binary-tree|
20-
|3. 无重复字符的最长子串|2|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
2132
|572. 另一个树的子树|2|https://leetcode-cn.com/problems/subtree-of-another-tree|
22-
|23. 合并K个排序链表|2|https://leetcode-cn.com/problems/merge-k-sorted-lists|
2333
|1. 两数之和|2|https://leetcode-cn.com/problems/two-sum|
24-
|剑指 Offer 29. 顺时针打印矩阵|2|https://leetcode-cn.com/problems/shun-shi-zhen-da-yin-ju-zhen-lcof|
25-
|695. 岛屿的最大面积|2|https://leetcode-cn.com/problems/max-area-of-island|
2634
|105. 从前序与中序遍历序列构造二叉树|2|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal|
35+
|206. 反转链表|2|https://leetcode-cn.com/problems/reverse-linked-list|
2736
|88. 合并两个有序数组|2|https://leetcode-cn.com/problems/merge-sorted-array|
2837
|152. 乘积最大子数组|2|https://leetcode-cn.com/problems/maximum-product-subarray|
2938
|70. 爬楼梯|2|https://leetcode-cn.com/problems/climbing-stairs|
30-
|49. 字母异位词分组|2|https://leetcode-cn.com/problems/group-anagrams|
31-
|209. 长度最小的子数组|2|https://leetcode-cn.com/problems/minimum-size-subarray-sum|
3239
|48. 旋转图像|2|https://leetcode-cn.com/problems/rotate-image|
33-
|85. 最大矩形|2|https://leetcode-cn.com/problems/maximal-rectangle|
34-
|287. 寻找重复数|2|https://leetcode-cn.com/problems/find-the-duplicate-number|
35-
|5. 最长回文子串|2|https://leetcode-cn.com/problems/longest-palindromic-substring|
36-
|46. 全排列|2|https://leetcode-cn.com/problems/permutations|
40+
|剑指 Offer 36. 二叉搜索树与双向链表|2|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof|
41+
|179. 最大数|2|https://leetcode-cn.com/problems/largest-number|
3742
|剑指 Offer 51. 数组中的逆序对|2|https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof|
3843
|143. 重排链表|2|https://leetcode-cn.com/problems/reorder-list|
3944
|239. 滑动窗口最大值|2|https://leetcode-cn.com/problems/sliding-window-maximum|
4045
|238. 除自身以外数组的乘积|2|https://leetcode-cn.com/problems/product-of-array-except-self|
41-
|121. 买卖股票的最佳时机|2|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
46+
|25. K 个一组翻转链表|2|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
47+
|129. 求根到叶子节点数字之和|2|https://leetcode-cn.com/problems/sum-root-to-leaf-numbers|
4248
|补充题4. 手撕快速排序|2|https://leetcode-cn.com/problems/sort-an-array|
49+
|42. 接雨水|2|https://leetcode-cn.com/problems/trapping-rain-water|
4350
|415. 字符串相加|2|https://leetcode-cn.com/problems/add-strings|
44-
|69. x 的平方根|2|https://leetcode-cn.com/problems/sqrtx|
51+
|221. 最大正方形|2|https://leetcode-cn.com/problems/maximal-square|
52+
|400. 第N个数字|2|https://leetcode-cn.com/problems/nth-digit|
53+
|54. 螺旋矩阵|2|https://leetcode-cn.com/problems/spiral-matrix|
4554
|104. 二叉树的最大深度|1|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
4655
|160. 相交链表|1|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
4756
|636. 函数的独占时间|1|https://leetcode-cn.com/problems/exclusive-time-of-functions|
@@ -54,7 +63,6 @@
5463
|509. 斐波那契数|1|https://leetcode-cn.com/problems/fibonacci-number|
5564
|128. 最长连续序列|1|https://leetcode-cn.com/problems/longest-consecutive-sequence|
5665
|20. 有效的括号|1|https://leetcode-cn.com/problems/valid-parentheses|
57-
|206. 反转链表|1|https://leetcode-cn.com/problems/reverse-linked-list|
5866
|264. 丑数 II|1|https://leetcode-cn.com/problems/ugly-number-ii|
5967
|437. 路径总和 III|1|https://leetcode-cn.com/problems/path-sum-iii|
6068
|560. 和为K的子数组|1|https://leetcode-cn.com/problems/subarray-sum-equals-k|
@@ -65,16 +73,13 @@
6573
|124. 二叉树中的最大路径和|1|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
6674
|剑指 Offer 54. 二叉搜索树的第k大节点|1|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof|
6775
|518. 零钱兑换 II|1|https://leetcode-cn.com/problems/coin-change-2|
68-
|剑指 Offer 36. 二叉搜索树与双向链表|1|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof|
6976
|50. Pow(x, n)|1|https://leetcode-cn.com/problems/powx-n|
7077
|122. 买卖股票的最佳时机 II|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii|
71-
|179. 最大数|1|https://leetcode-cn.com/problems/largest-number|
7278
|807. 保持城市天际线|1|https://leetcode-cn.com/problems/max-increase-to-keep-city-skyline|
7379
|123. 买卖股票的最佳时机 III|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iii|
7480
|315. 计算右侧小于当前元素的个数|1|https://leetcode-cn.com/problems/count-of-smaller-numbers-after-self|
7581
|1363. 形成三的最大倍数|1|https://leetcode-cn.com/problems/largest-multiple-of-three|
7682
|376. 摆动序列|1|https://leetcode-cn.com/problems/wiggle-subsequence|
77-
|25. K 个一组翻转链表|1|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
7883
|1143. 最长公共子序列|1|https://leetcode-cn.com/problems/longest-common-subsequence|
7984
|32. 最长有效括号|1|https://leetcode-cn.com/problems/longest-valid-parentheses|
8085
|718. 最长重复子数组|1|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
@@ -85,15 +90,12 @@
8590
|96. 不同的二叉搜索树|1|https://leetcode-cn.com/problems/unique-binary-search-trees|
8691
|41. 缺失的第一个正数|1|https://leetcode-cn.com/problems/first-missing-positive|
8792
|403. 青蛙过河|1|https://leetcode-cn.com/problems/frog-jump|
88-
|129. 求根到叶子节点数字之和|1|https://leetcode-cn.com/problems/sum-root-to-leaf-numbers|
8993
|726. 原子的数量|1|https://leetcode-cn.com/problems/number-of-atoms|
9094
|剑指 Offer 10- I. 斐波那契数列|1|https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof|
9195
|405. 数字转换为十六进制数|1|https://leetcode-cn.com/problems/convert-a-number-to-hexadecimal|
9296
|1420. 生成数组|1|https://leetcode-cn.com/problems/build-array-where-you-can-find-the-maximum-exactly-k-comparisons|
93-
|42. 接雨水|1|https://leetcode-cn.com/problems/trapping-rain-water|
9497
|306. 累加数|1|https://leetcode-cn.com/problems/additive-number|
9598
|98. 验证二叉搜索树|1|https://leetcode-cn.com/problems/validate-binary-search-tree|
96-
|221. 最大正方形|1|https://leetcode-cn.com/problems/maximal-square|
9799
|227. 基本计算器 II|1|https://leetcode-cn.com/problems/basic-calculator-ii|
98100
|1505. 最多 K 次交换相邻数位后得到的最小整数|1|https://leetcode-cn.com/problems/minimum-possible-integer-after-at-most-k-adjacent-swaps-on-digits|
99101
|632. 最小区间|1|https://leetcode-cn.com/problems/smallest-range-covering-elements-from-k-lists|
@@ -110,4 +112,29 @@
110112
|470. 用 Rand7() 实现 Rand10()|1|https://leetcode-cn.com/problems/implement-rand10-using-rand7|
111113
|164. 最大间距|1|https://leetcode-cn.com/problems/maximum-gap|
112114
|94. 二叉树的中序遍历|1|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
113-
|剑指 Offer 62. 圆圈中最后剩下的数字|1|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
115+
|剑指 Offer 62. 圆圈中最后剩下的数字|1|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
116+
|658. 找到 K 个最接近的元素|1|https://leetcode-cn.com/problems/find-k-closest-elements|
117+
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
118+
|355. 设计推特|1|https://leetcode-cn.com/problems/design-twitter|
119+
|剑指 Offer 11. 旋转数组的最小数字|1|https://leetcode-cn.com/problems/xuan-zhuan-shu-zu-de-zui-xiao-shu-zi-lcof|
120+
|698. 划分为k个相等的子集|1|https://leetcode-cn.com/problems/partition-to-k-equal-sum-subsets|
121+
|224. 基本计算器|1|https://leetcode-cn.com/problems/basic-calculator|
122+
|剑指 Offer 22. 链表中倒数第k个节点|1|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
123+
|31. 下一个排列|1|https://leetcode-cn.com/problems/next-permutation|
124+
|875. 爱吃香蕉的珂珂|1|https://leetcode-cn.com/problems/koko-eating-bananas|
125+
|145. 二叉树的后序遍历|1|https://leetcode-cn.com/problems/binary-tree-postorder-traversal|
126+
|19. 删除链表的倒数第N个节点|1|https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list|
127+
|673. 最长递增子序列的个数|1|https://leetcode-cn.com/problems/number-of-longest-increasing-subsequence|
128+
|剑指 Offer 34. 二叉树中和为某一值的路径|1|https://leetcode-cn.com/problems/er-cha-shu-zhong-he-wei-mou-yi-zhi-de-lu-jing-lcof|
129+
|670. 最大交换|1|https://leetcode-cn.com/problems/maximum-swap|
130+
|141. 环形链表|1|https://leetcode-cn.com/problems/linked-list-cycle|
131+
|897. 递增顺序查找树|1|https://leetcode-cn.com/problems/increasing-order-search-tree|
132+
|653. 两数之和 IV - 输入 BST|1|https://leetcode-cn.com/problems/two-sum-iv-input-is-a-bst|
133+
|310. 最小高度树|1|https://leetcode-cn.com/problems/minimum-height-trees|
134+
|167. 两数之和 II - 输入有序数组|1|https://leetcode-cn.com/problems/two-sum-ii-input-array-is-sorted|
135+
|611. 有效三角形的个数|1|https://leetcode-cn.com/problems/valid-triangle-number|
136+
|92. 反转链表 II|1|https://leetcode-cn.com/problems/reverse-linked-list-ii|
137+
|剑指 Offer 07. 重建二叉树|1|https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof|
138+
|525. 连续数组|1|https://leetcode-cn.com/problems/contiguous-array|
139+
|144. 二叉树的前序遍历|1|https://leetcode-cn.com/problems/binary-tree-preorder-traversal|
140+
|378. 有序矩阵中第K小的元素|1|https://leetcode-cn.com/problems/kth-smallest-element-in-a-sorted-matrix|

‎bytedance/backend.md

Lines changed: 156 additions & 124 deletions
Large diffs are not rendered by default.

‎bytedance/client.md

Lines changed: 60 additions & 47 deletions
Large diffs are not rendered by default.

‎bytedance/data.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,34 @@
33

44
|题目|出现次数|链接|
55
|-|-|-|
6+
|232. 用栈实现队列|4|https://leetcode-cn.com/problems/implement-queue-using-stacks|
7+
|146. LRU缓存机制|3|https://leetcode-cn.com/problems/lru-cache|
8+
|121. 买卖股票的最佳时机|3|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
69
|101. 对称二叉树|3|https://leetcode-cn.com/problems/symmetric-tree|
710
|25. K 个一组翻转链表|3|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
8-
|232. 用栈实现队列|3|https://leetcode-cn.com/problems/implement-queue-using-stacks|
9-
|200. 岛屿数量|2|https://leetcode-cn.com/problems/number-of-islands|
10-
|64. 最小路径和|2|https://leetcode-cn.com/problems/minimum-path-sum|
11-
|补充题1. 排序奇升偶降链表|2|https://mp.weixin.qq.com/s/377FfqvpY8NwMInhpoDgsw|
12-
|146. LRU缓存机制|2|https://leetcode-cn.com/problems/lru-cache|
1311
|98. 验证二叉搜索树|2|https://leetcode-cn.com/problems/validate-binary-search-tree|
14-
|121. 买卖股票的最佳时机|2|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
12+
|103. 二叉树的锯齿形层次遍历|2|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
13+
|141. 环形链表|2|https://leetcode-cn.com/problems/linked-list-cycle|
1514
|53. 最大子序和|2|https://leetcode-cn.com/problems/maximum-subarray|
16-
|103. 二叉树的锯齿形层次遍历|1|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
17-
|611. 有效三角形的个数|1|https://leetcode-cn.com/problems/valid-triangle-number|
18-
|补充题6. 手撕堆排序|1|https://leetcode-cn.com/problems/sort-an-array|
15+
|64. 最小路径和|2|https://leetcode-cn.com/problems/minimum-path-sum|
16+
|200. 岛屿数量|2|https://leetcode-cn.com/problems/number-of-islands|
17+
|补充题1. 排序奇升偶降链表|2|https://mp.weixin.qq.com/s/0WVa2wIAeG0nYnVndZiEXQ|
1918
|94. 二叉树的中序遍历|1|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
20-
|141. 环形链表|1|https://leetcode-cn.com/problems/linked-list-cycle|
19+
|补充题6. 手撕堆排序|1|https://leetcode-cn.com/problems/sort-an-array|
2120
|剑指 Offer 53 - I. 在排序数组中查找数字 I|1|https://leetcode-cn.com/problems/zai-pai-xu-shu-zu-zhong-cha-zhao-shu-zi-lcof|
22-
|230. 二叉搜索树中第K小的元素|1|https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst|
23-
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
2421
|122. 买卖股票的最佳时机 II|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii|
25-
|69. x 的平方根|1|https://leetcode-cn.com/problems/sqrtx|
26-
|148. 排序链表|1|https://leetcode-cn.com/problems/sort-list|
22+
|230. 二叉搜索树中第K小的元素|1|https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst|
2723
|142. 环形链表 II|1|https://leetcode-cn.com/problems/linked-list-cycle-ii|
24+
|69. x 的平方根|1|https://leetcode-cn.com/problems/sqrtx|
25+
|611. 有效三角形的个数|1|https://leetcode-cn.com/problems/valid-triangle-number|
26+
|221. 最大正方形|1|https://leetcode-cn.com/problems/maximal-square|
2827
|剑指 Offer 51. 数组中的逆序对|1|https://leetcode-cn.com/problems/shu-zu-zhong-de-ni-xu-dui-lcof|
2928
|43. 字符串相乘|1|https://leetcode-cn.com/problems/multiply-strings|
3029
|补充题14. 阿拉伯数字转中文数字|1||
3130
|16. 最接近的三数之和|1|https://leetcode-cn.com/problems/3sum-closest|
3231
|102. 二叉树的层序遍历|1|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
32+
|215. 数组中的第K个最大元素|1|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
33+
|1201. 丑数 III|1|https://leetcode-cn.com/problems/ugly-number-iii|
3334
|240. 搜索二维矩阵 II|1|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
3435
|剑指 Offer 41. 数据流中的中位数|1|https://leetcode-cn.com/problems/shu-ju-liu-zhong-de-zhong-wei-shu-lcof|
3536
|112. 路径总和|1|https://leetcode-cn.com/problems/path-sum|
@@ -41,7 +42,7 @@
4142
|440. 字典序的第K小数字|1|https://leetcode-cn.com/problems/k-th-smallest-in-lexicographical-order|
4243
|206. 反转链表|1|https://leetcode-cn.com/problems/reverse-linked-list|
4344
|42. 接雨水|1|https://leetcode-cn.com/problems/trapping-rain-water|
44-
|138. 复制带随机指针的链表|1|https://leetcode-cn.com/problems/copy-list-with-random-pointer|
45+
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
4546
|60. 第k个排列|1|https://leetcode-cn.com/problems/permutation-sequence|
4647
|516. 最长回文子序列|1|https://leetcode-cn.com/problems/longest-palindromic-subsequence|
4748
|718. 最长重复子数组|1|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
@@ -50,4 +51,5 @@
5051
|33. 搜索旋转排序数组|1|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
5152
|113. 路径总和 II|1|https://leetcode-cn.com/problems/path-sum-ii|
5253
|143. 重排链表|1|https://leetcode-cn.com/problems/reorder-list|
53-
|1201. 丑数 III|1|https://leetcode-cn.com/problems/ugly-number-iii|
54+
|148. 排序链表|1|https://leetcode-cn.com/problems/sort-list|
55+
|138. 复制带随机指针的链表|1|https://leetcode-cn.com/problems/copy-list-with-random-pointer|

‎bytedance/frontend.md

Lines changed: 32 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,65 +3,70 @@
33

44
|题目|出现次数|链接|
55
|-|-|-|
6-
|88. 合并两个有序数组|16|https://leetcode-cn.com/problems/merge-sorted-array|
7-
|3. 无重复字符的最长子串|16|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
8-
|129. 求根到叶子节点数字之和|12|https://leetcode-cn.com/problems/sum-root-to-leaf-numbers|
6+
|3. 无重复字符的最长子串|18|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
7+
|88. 合并两个有序数组|17|https://leetcode-cn.com/problems/merge-sorted-array|
8+
|129. 求根到叶子节点数字之和|15|https://leetcode-cn.com/problems/sum-root-to-leaf-numbers|
9+
|112. 路径总和|13|https://leetcode-cn.com/problems/path-sum|
910
|53. 最大子序和|12|https://leetcode-cn.com/problems/maximum-subarray|
11+
|1. 两数之和|11|https://leetcode-cn.com/problems/two-sum|
12+
|165. 比较版本号|11|https://leetcode-cn.com/problems/compare-version-numbers|
1013
|215. 数组中的第K个最大元素|10|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
11-
|112. 路径总和|10|https://leetcode-cn.com/problems/path-sum|
12-
|1. 两数之和|10|https://leetcode-cn.com/problems/two-sum|
13-
|165. 比较版本号|9|https://leetcode-cn.com/problems/compare-version-numbers|
1414
|209. 长度最小的子数组|8|https://leetcode-cn.com/problems/minimum-size-subarray-sum|
15+
|剑指 Offer 22. 链表中倒数第k个节点|8|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
1516
|415. 字符串相加|8|https://leetcode-cn.com/problems/add-strings|
16-
|剑指 Offer 22. 链表中倒数第k个节点|7|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
17+
|46. 全排列|8|https://leetcode-cn.com/problems/permutations|
1718
|206. 反转链表|7|https://leetcode-cn.com/problems/reverse-linked-list|
1819
|102. 二叉树的层序遍历|6|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
20+
|70. 爬楼梯|6|https://leetcode-cn.com/problems/climbing-stairs|
21+
|54. 螺旋矩阵|6|https://leetcode-cn.com/problems/spiral-matrix|
1922
|93. 复原IP地址|5|https://leetcode-cn.com/problems/restore-ip-addresses|
2023
|200. 岛屿数量|5|https://leetcode-cn.com/problems/number-of-islands|
21-
|70. 爬楼梯|5|https://leetcode-cn.com/problems/climbing-stairs|
2224
|230. 二叉搜索树中第K小的元素|5|https://leetcode-cn.com/problems/kth-smallest-element-in-a-bst|
25+
|15. 三数之和|5|https://leetcode-cn.com/problems/3sum|
2326
|141. 环形链表|5|https://leetcode-cn.com/problems/linked-list-cycle|
24-
|46. 全排列|5|https://leetcode-cn.com/problems/permutations|
2527
|429. N叉树的层序遍历|5|https://leetcode-cn.com/problems/n-ary-tree-level-order-traversal|
2628
|226. 翻转二叉树|4|https://leetcode-cn.com/problems/invert-binary-tree|
27-
|15. 三数之和|4|https://leetcode-cn.com/problems/3sum|
28-
|54. 螺旋矩阵|4|https://leetcode-cn.com/problems/spiral-matrix|
29+
|121. 买卖股票的最佳时机|4|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
2930
|718. 最长重复子数组|4|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
3031
|160. 相交链表|4|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
3132
|695. 岛屿的最大面积|4|https://leetcode-cn.com/problems/max-area-of-island|
3233
|62. 不同路径|4|https://leetcode-cn.com/problems/unique-paths|
34+
|剑指 Offer 62. 圆圈中最后剩下的数字|4|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
3335
|94. 二叉树的中序遍历|3|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
34-
|121. 买卖股票的最佳时机|3|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
3536
|104. 二叉树的最大深度|3|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
37+
|21. 合并两个有序链表|3|https://leetcode-cn.com/problems/merge-two-sorted-lists|
3638
|509. 斐波那契数|3|https://leetcode-cn.com/problems/fibonacci-number|
3739
|113. 路径总和 II|3|https://leetcode-cn.com/problems/path-sum-ii|
38-
|剑指 Offer 62. 圆圈中最后剩下的数字|3|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
40+
|468. 验证IP地址|3|https://leetcode-cn.com/problems/validate-ip-address|
41+
|31. 下一个排列|3|https://leetcode-cn.com/problems/next-permutation|
3942
|20. 有效的括号|3|https://leetcode-cn.com/problems/valid-parentheses|
4043
|349. 两个数组的交集|3|https://leetcode-cn.com/problems/intersection-of-two-arrays|
4144
|5. 最长回文子串|3|https://leetcode-cn.com/problems/longest-palindromic-substring|
4245
|236. 二叉树的最近公共祖先|3|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
46+
|146. LRU缓存机制|3|https://leetcode-cn.com/problems/lru-cache|
47+
|322. 零钱兑换|2|https://leetcode-cn.com/problems/coin-change|
4348
|394. 字符串解码|2|https://leetcode-cn.com/problems/decode-string|
4449
|19. 删除链表的倒数第N个节点|2|https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list|
45-
|21. 合并两个有序链表|2|https://leetcode-cn.com/problems/merge-two-sorted-lists|
4650
|剑指 Offer 24. 反转链表|2|https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof|
4751
|42. 接雨水|2|https://leetcode-cn.com/problems/trapping-rain-water|
4852
|155. 最小栈|2|https://leetcode-cn.com/problems/min-stack|
4953
|169. 多数元素|2|https://leetcode-cn.com/problems/majority-element|
5054
|剑指 Offer 21. 调整数组顺序使奇数位于偶数前面|2|https://leetcode-cn.com/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof|
55+
|67. 二进制求和|2|https://leetcode-cn.com/problems/add-binary|
5156
|144. 二叉树的前序遍历|2|https://leetcode-cn.com/problems/binary-tree-preorder-traversal|
5257
|198. 打家劫舍|2|https://leetcode-cn.com/problems/house-robber|
5358
|14. 最长公共前缀|2|https://leetcode-cn.com/problems/longest-common-prefix|
54-
|补充题3. 求区间最小数乘区间和的最大值|2|https://mp.weixin.qq.com/s/ABNN4lJpvttulwWaUTgYZQ|
59+
|补充题3. 求区间最小数乘区间和的最大值|2|https://mp.weixin.qq.com/s/UFv7pt_djjZoK_gzUBrRXA|
5560
|199. 二叉树的右视图|2|https://leetcode-cn.com/problems/binary-tree-right-side-view|
5661
|剑指 Offer 09. 用两个栈实现队列|2|https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof|
5762
|56. 合并区间|2|https://leetcode-cn.com/problems/merge-intervals|
63+
|300. 最长上升子序列|2|https://leetcode-cn.com/problems/longest-increasing-subsequence|
5864
|剑指 Offer 38. 字符串的排列|2|https://leetcode-cn.com/problems/zi-fu-chuan-de-pai-lie-lcof|
65+
|补充题14. 阿拉伯数字转中文数字|2||
5966
|400. 第N个数字|2|https://leetcode-cn.com/problems/nth-digit|
6067
|101. 对称二叉树|2|https://leetcode-cn.com/problems/symmetric-tree|
61-
|146. LRU缓存机制|2|https://leetcode-cn.com/problems/lru-cache|
6268
|剑指 Offer 48. 最长不含重复字符的子字符串|1|https://leetcode-cn.com/problems/zui-chang-bu-han-zhong-fu-zi-fu-de-zi-zi-fu-chuan-lcof|
6369
|680. 验证回文字符串 Ⅱ|1|https://leetcode-cn.com/problems/valid-palindrome-ii|
64-
|322. 零钱兑换|1|https://leetcode-cn.com/problems/coin-change|
6570
|124. 二叉树中的最大路径和|1|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
6671
|221. 最大正方形|1|https://leetcode-cn.com/problems/maximal-square|
6772
|98. 验证二叉搜索树|1|https://leetcode-cn.com/problems/validate-binary-search-tree|
@@ -76,15 +81,12 @@
7681
|443. 压缩字符串|1|https://leetcode-cn.com/problems/string-compression|
7782
|142. 环形链表 II|1|https://leetcode-cn.com/problems/linked-list-cycle-ii|
7883
|984. 不含 AAA 或 BBB 的字符串|1|https://leetcode-cn.com/problems/string-without-aaa-or-bbb|
79-
|67. 二进制求和|1|https://leetcode-cn.com/problems/add-binary|
80-
|468. 验证IP地址|1|https://leetcode-cn.com/problems/validate-ip-address|
8184
|151. 翻转字符串里的单词|1|https://leetcode-cn.com/problems/reverse-words-in-a-string|
8285
|213. 打家劫舍 II|1|https://leetcode-cn.com/problems/house-robber-ii|
8386
|114. 二叉树展开为链表|1|https://leetcode-cn.com/problems/flatten-binary-tree-to-linked-list|
8487
|109. 有序链表转换二叉搜索树|1|https://leetcode-cn.com/problems/convert-sorted-list-to-binary-search-tree|
8588
|242. 有效的字母异位词|1|https://leetcode-cn.com/problems/valid-anagram|
8689
|862. 和至少为 K 的最短子数组|1|https://leetcode-cn.com/problems/shortest-subarray-with-sum-at-least-k|
87-
|31. 下一个排列|1|https://leetcode-cn.com/problems/next-permutation|
8890
|1498. 满足条件的子序列数目|1|https://leetcode-cn.com/problems/number-of-subsequences-that-satisfy-the-given-sum-condition|
8991
|257. 二叉树的所有路径|1|https://leetcode-cn.com/problems/binary-tree-paths|
9092
|63. 不同路径 II|1|https://leetcode-cn.com/problems/unique-paths-ii|
@@ -97,17 +99,24 @@
9799
|96. 不同的二叉搜索树|1|https://leetcode-cn.com/problems/unique-binary-search-trees|
98100
|103. 二叉树的锯齿形层次遍历|1|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
99101
|717. 1比特与2比特字符|1|https://leetcode-cn.com/problems/1-bit-and-2-bit-characters|
100-
|300. 最长上升子序列|1|https://leetcode-cn.com/problems/longest-increasing-subsequence|
101102
|1353. 最多可以参加的会议数目|1|https://leetcode-cn.com/problems/maximum-number-of-events-that-can-be-attended|
102103
|剑指 Offer 63. 股票的最大利润|1|https://leetcode-cn.com/problems/gu-piao-de-zui-da-li-run-lcof|
103104
|剑指 Offer 27. 二叉树的镜像|1|https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof|
104105
|LCP 04. 覆盖|1|https://leetcode-cn.com/problems/broken-board-dominoes|
105106
|剑指 Offer 39. 数组中出现次数超过一半的数字|1|https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof|
106107
|剑指 Offer 07. 重建二叉树|1|https://leetcode-cn.com/problems/zhong-jian-er-cha-shu-lcof|
107-
|补充题14. 阿拉伯数字转中文数字|1||
108108
|829. 连续整数求和|1|https://leetcode-cn.com/problems/consecutive-numbers-sum|
109109
|1356. 根据数字二进制下 1 的数目排序|1|https://leetcode-cn.com/problems/sort-integers-by-the-number-of-1-bits|
110110
|6. Z 字形变换|1|https://leetcode-cn.com/problems/zigzag-conversion|
111111
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
112112
|111. 二叉树的最小深度|1|https://leetcode-cn.com/problems/minimum-depth-of-binary-tree|
113-
|105. 从前序与中序遍历序列构造二叉树|1|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal|
113+
|105. 从前序与中序遍历序列构造二叉树|1|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal|
114+
|783. 二叉搜索树节点最小距离|1|https://leetcode-cn.com/problems/minimum-distance-between-bst-nodes|
115+
|剑指 Offer 42. 连续子数组的最大和|1|https://leetcode-cn.com/problems/lian-xu-zi-shu-zu-de-zui-da-he-lcof|
116+
|55. 跳跃游戏|1|https://leetcode-cn.com/problems/jump-game|
117+
|2. 两数相加|1|https://leetcode-cn.com/problems/add-two-numbers|
118+
|1410. HTML 实体解析器|1|https://leetcode-cn.com/problems/html-entity-parser|
119+
|125. 验证回文串|1|https://leetcode-cn.com/problems/valid-palindrome|
120+
|12. 整数转罗马数字|1|https://leetcode-cn.com/problems/integer-to-roman|
121+
|45. 跳跃游戏 II|1|https://leetcode-cn.com/problems/jump-game-ii|
122+
|43. 字符串相乘|1|https://leetcode-cn.com/problems/multiply-strings|

‎bytedance/test.md

Lines changed: 43 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -3,55 +3,59 @@
33

44
|题目|出现次数|链接|
55
|-|-|-|
6-
|3. 无重复字符的最长子串|21|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
6+
|3. 无重复字符的最长子串|28|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
7+
|160. 相交链表|11|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
78
|206. 反转链表|11|https://leetcode-cn.com/problems/reverse-linked-list|
89
|169. 多数元素|11|https://leetcode-cn.com/problems/majority-element|
10+
|1. 两数之和|10|https://leetcode-cn.com/problems/two-sum|
911
|20. 有效的括号|10|https://leetcode-cn.com/problems/valid-parentheses|
10-
|1. 两数之和|8|https://leetcode-cn.com/problems/two-sum|
1112
|415. 字符串相加|8|https://leetcode-cn.com/problems/add-strings|
12-
|160. 相交链表|7|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
13+
|239. 滑动窗口最大值|7|https://leetcode-cn.com/problems/sliding-window-maximum|
14+
|179. 最大数|6|https://leetcode-cn.com/problems/largest-number|
1315
|25. K 个一组翻转链表|6|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
14-
|239. 滑动窗口最大值|6|https://leetcode-cn.com/problems/sliding-window-maximum|
16+
|121. 买卖股票的最佳时机|6|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
17+
|5. 最长回文子串|6|https://leetcode-cn.com/problems/longest-palindromic-substring|
18+
|83. 删除排序链表中的重复元素|6|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list|
1519
|78. 子集|5|https://leetcode-cn.com/problems/subsets|
1620
|94. 二叉树的中序遍历|5|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
17-
|179. 最大数|5|https://leetcode-cn.com/problems/largest-number|
18-
|121. 买卖股票的最佳时机|5|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
19-
|5. 最长回文子串|5|https://leetcode-cn.com/problems/longest-palindromic-substring|
21+
|468. 验证IP地址|5|https://leetcode-cn.com/problems/validate-ip-address|
22+
|15. 三数之和|5|https://leetcode-cn.com/problems/3sum|
2023
|141. 环形链表|5|https://leetcode-cn.com/problems/linked-list-cycle|
21-
|83. 删除排序链表中的重复元素|5|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list|
2224
|718. 最长重复子数组|5|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
2325
|64. 最小路径和|4|https://leetcode-cn.com/problems/minimum-path-sum|
2426
|142. 环形链表 II|4|https://leetcode-cn.com/problems/linked-list-cycle-ii|
2527
|剑指 Offer 61. 扑克牌中的顺子|4|https://leetcode-cn.com/problems/bu-ke-pai-zhong-de-shun-zi-lcof|
26-
|468. 验证IP地址|4|https://leetcode-cn.com/problems/validate-ip-address|
2728
|62. 不同路径|4|https://leetcode-cn.com/problems/unique-paths|
2829
|70. 爬楼梯|4|https://leetcode-cn.com/problems/climbing-stairs|
29-
|15. 三数之和|4|https://leetcode-cn.com/problems/3sum|
3030
|110. 平衡二叉树|4|https://leetcode-cn.com/problems/balanced-binary-tree|
31+
|32. 最长有效括号|4|https://leetcode-cn.com/problems/longest-valid-parentheses|
3132
|1143. 最长公共子序列|4|https://leetcode-cn.com/problems/longest-common-subsequence|
3233
|21. 合并两个有序链表|4|https://leetcode-cn.com/problems/merge-two-sorted-lists|
3334
|39. 组合总和|4|https://leetcode-cn.com/problems/combination-sum|
35+
|56. 合并区间|4|https://leetcode-cn.com/problems/merge-intervals|
3436
|14. 最长公共前缀|3|https://leetcode-cn.com/problems/longest-common-prefix|
3537
|剑指 Offer 21. 调整数组顺序使奇数位于偶数前面|3|https://leetcode-cn.com/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof|
3638
|215. 数组中的第K个最大元素|3|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
37-
|32. 最长有效括号|3|https://leetcode-cn.com/problems/longest-valid-parentheses|
39+
|704. 二分查找|3|https://leetcode-cn.com/problems/binary-search|
3840
|26. 删除排序数组中的重复项|3|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array|
41+
|88. 合并两个有序数组|3|https://leetcode-cn.com/problems/merge-sorted-array|
3942
|124. 二叉树中的最大路径和|3|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
4043
|8. 字符串转换整数 (atoi)|3|https://leetcode-cn.com/problems/string-to-integer-atoi|
4144
|76. 最小覆盖子串|2|https://leetcode-cn.com/problems/minimum-window-substring|
45+
|剑指 Offer 39. 数组中出现次数超过一半的数字|2|https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof|
4246
|146. LRU缓存机制|2|https://leetcode-cn.com/problems/lru-cache|
4347
|19. 删除链表的倒数第N个节点|2|https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list|
4448
|543. 二叉树的直径|2|https://leetcode-cn.com/problems/diameter-of-binary-tree|
45-
|704. 二分查找|2|https://leetcode-cn.com/problems/binary-search|
4649
|240. 搜索二维矩阵 II|2|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
50+
|162. 寻找峰值|2|https://leetcode-cn.com/problems/find-peak-element|
4751
|125. 验证回文串|2|https://leetcode-cn.com/problems/valid-palindrome|
4852
|268. 缺失数字|2|https://leetcode-cn.com/problems/missing-number|
4953
|42. 接雨水|2|https://leetcode-cn.com/problems/trapping-rain-water|
50-
|88. 合并两个有序数组|2|https://leetcode-cn.com/problems/merge-sorted-array|
54+
|198. 打家劫舍|2|https://leetcode-cn.com/problems/house-robber|
5155
|242. 有效的字母异位词|2|https://leetcode-cn.com/problems/valid-anagram|
5256
|151. 翻转字符串里的单词|2|https://leetcode-cn.com/problems/reverse-words-in-a-string|
57+
|103. 二叉树的锯齿形层次遍历|2|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
5358
|剑指 Offer 10- II. 青蛙跳台阶问题|2|https://leetcode-cn.com/problems/qing-wa-tiao-tai-jie-wen-ti-lcof|
54-
|56. 合并区间|2|https://leetcode-cn.com/problems/merge-intervals|
5559
|470. 用 Rand7() 实现 Rand10()|2|https://leetcode-cn.com/problems/implement-rand10-using-rand7|
5660
|93. 复原IP地址|2|https://leetcode-cn.com/problems/restore-ip-addresses|
5761
|283. 移动零|2|https://leetcode-cn.com/problems/move-zeroes|
@@ -61,21 +65,18 @@
6165
|1201. 丑数 III|1|https://leetcode-cn.com/problems/ugly-number-iii|
6266
|344. 反转字符串|1|https://leetcode-cn.com/problems/reverse-string|
6367
|862. 和至少为 K 的最短子数组|1|https://leetcode-cn.com/problems/shortest-subarray-with-sum-at-least-k|
64-
|剑指 Offer 39. 数组中出现次数超过一半的数字|1|https://leetcode-cn.com/problems/shu-zu-zhong-chu-xian-ci-shu-chao-guo-yi-ban-de-shu-zi-lcof|
6568
|236. 二叉树的最近公共祖先|1|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
6669
|9. 回文数|1|https://leetcode-cn.com/problems/palindrome-number|
6770
|405. 数字转换为十六进制数|1|https://leetcode-cn.com/problems/convert-a-number-to-hexadecimal|
6871
|200. 岛屿数量|1|https://leetcode-cn.com/problems/number-of-islands|
6972
|796. 旋转字符串|1|https://leetcode-cn.com/problems/rotate-string|
7073
|234. 回文链表|1|https://leetcode-cn.com/problems/palindrome-linked-list|
71-
|162. 寻找峰值|1|https://leetcode-cn.com/problems/find-peak-element|
7274
|41. 缺失的第一个正数|1|https://leetcode-cn.com/problems/first-missing-positive|
7375
|498. 对角线遍历|1|https://leetcode-cn.com/problems/diagonal-traverse|
7476
|49. 字母异位词分组|1|https://leetcode-cn.com/problems/group-anagrams|
7577
|79. 单词搜索|1|https://leetcode-cn.com/problems/word-search|
7678
|232. 用栈实现队列|1|https://leetcode-cn.com/problems/implement-queue-using-stacks|
7779
|97. 交错字符串|1|https://leetcode-cn.com/problems/interleaving-string|
78-
|198. 打家劫舍|1|https://leetcode-cn.com/problems/house-robber|
7980
|154. 寻找旋转排序数组中的最小值 II|1|https://leetcode-cn.com/problems/find-minimum-in-rotated-sorted-array-ii|
8081
|113. 路径总和 II|1|https://leetcode-cn.com/problems/path-sum-ii|
8182
|443. 压缩字符串|1|https://leetcode-cn.com/problems/string-compression|
@@ -86,9 +87,8 @@
8687
|剑指 Offer 22. 链表中倒数第k个节点|1|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
8788
|224. 基本计算器|1|https://leetcode-cn.com/problems/basic-calculator|
8889
|122. 买卖股票的最佳时机 II|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii|
89-
|补充题1. 排序奇升偶降链表|1|https://mp.weixin.qq.com/s/377FfqvpY8NwMInhpoDgsw|
90+
|补充题1. 排序奇升偶降链表|1|https://mp.weixin.qq.com/s/0WVa2wIAeG0nYnVndZiEXQ|
9091
|958. 二叉树的完全性检验|1|https://leetcode-cn.com/problems/check-completeness-of-a-binary-tree|
91-
|103. 二叉树的锯齿形层次遍历|1|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
9292
|557. 反转字符串中的单词 III|1|https://leetcode-cn.com/problems/reverse-words-in-a-string-iii|
9393
|22. 括号生成|1|https://leetcode-cn.com/problems/generate-parentheses|
9494
|459. 重复的子字符串|1|https://leetcode-cn.com/problems/repeated-substring-pattern|
@@ -108,4 +108,27 @@
108108
|2. 两数相加|1|https://leetcode-cn.com/problems/add-two-numbers|
109109
|剑指 Offer 62. 圆圈中最后剩下的数字|1|https://leetcode-cn.com/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof|
110110
|231. 2的幂|1|https://leetcode-cn.com/problems/power-of-two|
111-
|补充题4. 手撕快速排序|1|https://leetcode-cn.com/problems/sort-an-array|
111+
|补充题4. 手撕快速排序|1|https://leetcode-cn.com/problems/sort-an-array|
112+
|136. 只出现一次的数字|1|https://leetcode-cn.com/problems/single-number|
113+
|101. 对称二叉树|1|https://leetcode-cn.com/problems/symmetric-tree|
114+
|570. 至少有5名直接下属的经理|1|https://leetcode-cn.com/problems/managers-with-at-least-5-direct-reports|
115+
|82. 删除排序链表中的重复元素 II|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii|
116+
|950. 按递增顺序显示卡牌|1|https://leetcode-cn.com/problems/reveal-cards-in-increasing-order|
117+
|剑指 Offer 11. 旋转数组的最小数字|1|https://leetcode-cn.com/problems/xuan-zhuan-shu-zu-de-zui-xiao-shu-zi-lcof|
118+
|199. 二叉树的右视图|1|https://leetcode-cn.com/problems/binary-tree-right-side-view|
119+
|补充题6. 手撕堆排序|1|https://leetcode-cn.com/problems/sort-an-array|
120+
|738. 单调递增的数字|1|https://leetcode-cn.com/problems/monotone-increasing-digits|
121+
|745. 前缀和后缀搜索|1|https://leetcode-cn.com/problems/prefix-and-suffix-search|
122+
Software Engineer
123+
|题目|出现次数|链接|
124+
|-|-|-|
125+
|146. LRU缓存机制|2|https://leetcode-cn.com/problems/lru-cache|
126+
|80. 删除排序数组中的重复项 II|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array-ii|
127+
|76. 最小覆盖子串|1|https://leetcode-cn.com/problems/minimum-window-substring|
128+
|215. 数组中的第K个最大元素|1|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
129+
|1. 两数之和|1|https://leetcode-cn.com/problems/two-sum|
130+
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
131+
|232. 用栈实现队列|1|https://leetcode-cn.com/problems/implement-queue-using-stacks|
132+
|165. 比较版本号|1|https://leetcode-cn.com/problems/compare-version-numbers|
133+
|470. 用 Rand7() 实现 Rand10()|1|https://leetcode-cn.com/problems/implement-rand10-using-rand7|
134+
|149. 直线上最多的点数|1|https://leetcode-cn.com/problems/max-points-on-a-line|

0 commit comments

Comments
 (0)
Please sign in to comment.