Skip to content

Commit 56c292b

Browse files
committed
更新猿辅导数据
1 parent 628b65b commit 56c292b

File tree

8 files changed

+263
-236
lines changed

8 files changed

+263
-236
lines changed

Diff for: README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@
1313

1414
:warning:若转载本文章,需注明本仓库地址哦
1515

16+
## 猿辅导(更新至牛客3.5日的面经)
17+
<details>
18+
<summary>按岗位分类</summary>
19+
20+
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/backend.md)
21+
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/algorithm.md)
22+
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/client.md)
23+
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/frontend.md)
24+
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/test.md)
25+
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/data.md)
26+
</details>
27+
1628
## 字节跳动(更新至牛客2.28日的面经)
1729
<details>
1830
<summary>按岗位分类</summary>
@@ -41,18 +53,6 @@
4153
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/kuaishou/data.md)
4254
</details>
4355

44-
## 猿辅导(更新至牛客8.31日的面经)
45-
<details>
46-
<summary>按岗位分类</summary>
47-
48-
[8.1~8.31面试考察的题目](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/new.md)
49-
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/backend.md)
50-
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/algorithm.md)
51-
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/client.md)
52-
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/frontend.md)
53-
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/test.md)
54-
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/yuanfudao/data.md)
55-
</details>
5656

5757
## 百度(更新至牛客8.7日的面经)
5858
<details>

Diff for: yuanfudao/algorithm.md

+22-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
| 题目 | 频次 |
2-
|--------------------------|----|
3-
| 445\. 两数相加 II | 1 |
4-
| 543\. 二叉树的直径 | 1 |
5-
| 83\. 删除排序链表中的重复元素 | 1 |
6-
| 面试题 03\.05\. 栈排序 | 1 |
7-
| 1254\. 统计封闭岛屿的数目 | 1 |
8-
| 847\. 访问所有节点的最短路径 | 1 |
9-
| 25\. K 个一组翻转链表 | 1 |
10-
| 剑指 Offer 22\. 链表中倒数第k个节点 | 1 |
1+
# 算法
2+
3+
|题目|出现次数|链接|
4+
|-|-|-|
5+
|445. 两数相加 II|2|https://leetcode-cn.com/problems/add-two-numbers-ii|
6+
|688. “马”在棋盘上的概率|1|https://leetcode-cn.com/problems/knight-probability-in-chessboard|
7+
|847. 访问所有节点的最短路径|1|https://leetcode-cn.com/problems/shortest-path-visiting-all-nodes|
8+
|340. 至多包含 K 个不同字符的最长子串|1|https://leetcode-cn.com/problems/longest-substring-with-at-most-k-distinct-characters|
9+
|827. 最大人工岛|1|https://leetcode-cn.com/problems/making-a-large-island|
10+
|1254. 统计封闭岛屿的数目|1|https://leetcode-cn.com/problems/number-of-closed-islands|
11+
|582. 杀死进程|1|https://leetcode-cn.com/problems/kill-process|
12+
|773. 滑动谜题|1|https://leetcode-cn.com/problems/sliding-puzzle|
13+
|83. 删除排序链表中的重复元素|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list|
14+
|207. 课程表|1|https://leetcode-cn.com/problems/course-schedule|
15+
|33. 搜索旋转排序数组|1|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
16+
|543. 二叉树的直径|1|https://leetcode-cn.com/problems/diameter-of-binary-tree|
17+
|692. 前K个高频单词|1|https://leetcode-cn.com/problems/top-k-frequent-words|
18+
|剑指 Offer 22. 链表中倒数第k个节点|1|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
19+
|424. 替换后的最长重复字符|1|https://leetcode-cn.com/problems/longest-repeating-character-replacement|
20+
|200. 岛屿数量|1|https://leetcode-cn.com/problems/number-of-islands|
21+
|25. K 个一组翻转链表|1|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
22+
|225. 用队列实现栈|1|https://leetcode-cn.com/problems/implement-stack-using-queues|

Diff for: yuanfudao/backend.md

+145-41
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,145 @@
1-
| 题目 | 频次 |
2-
|--------------------------|----|
3-
| 189\. 旋转数组 | 3 |
4-
| 剑指 Offer 27\. 二叉树的镜像 | 3 |
5-
| 113\. 路径总和 II | 3 |
6-
| 1\. 两数之和 | 2 |
7-
| 面试题 03\.05\. 栈排序 | 2 |
8-
| 74\. 搜索二维矩阵 | 2 |
9-
| 110\. 平衡二叉树 | 2 |
10-
| 222\. 完全二叉树的节点个数 | 2 |
11-
| 25\. K 个一组翻转链表 | 2 |
12-
| 剑指 Offer 36\. 二叉搜索树与双向链表 | 2 |
13-
| 98\. 验证二叉搜索树 | 2 |
14-
| 215\. 数组中的第K个最大元素 | 2 |
15-
| 7\. 整数反转 | 1 |
16-
| 102\. 二叉树的层序遍历 | 1 |
17-
| 562\.矩阵中最长的连续1线段 | 1 |
18-
| 41\. 缺失的第一个正数 | 1 |
19-
| 448\. 找到所有数组中消失的数字 | 1 |
20-
| 82\. 删除排序链表中的重复元素 II | 1 |
21-
| 94\. 二叉树的中序遍历 | 1 |
22-
| 257\. 二叉树的所有路径 | 1 |
23-
| 124\. 二叉树中的最大路径和 | 1 |
24-
| 450\. 删除二叉搜索树中的节点 | 1 |
25-
| 40\. 组合总和 II | 1 |
26-
| 658\. 找到 K 个最接近的元素 | 1 |
27-
| 316\. 去除重复字母 | 1 |
28-
| 86\. 分隔链表 | 1 |
29-
| 226\. 翻转二叉树 | 1 |
30-
| 剑指 Offer 22\. 链表中倒数第k个节点 | 1 |
31-
| 560\. 和为K的子数组 | 1 |
32-
| 442\. 数组中重复的数据 | 1 |
33-
| 1325\. 删除给定值的叶子节点 | 1 |
34-
| 剑指 Offer 25\. 合并两个排序的链表 | 1 |
35-
| 240\. 搜索二维矩阵 II | 1 |
36-
| 958\. 二叉树的完全性检验 | 1 |
37-
| 239\. 滑动窗口最大值 | 1 |
38-
| 208\. 实现 Trie \(前缀树\) | 1 |
39-
| 99\. 恢复二叉搜索树 | 1 |
40-
| 83\. 删除排序链表中的重复元素 | 1 |
41-
| 301\. 删除无效的括号 | 1 |
1+
# 后端
2+
3+
|题目|出现次数|链接|
4+
|-|-|-|
5+
|215. 数组中的第K个最大元素|10|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
6+
|92. 反转链表 II|7|https://leetcode-cn.com/problems/reverse-linked-list-ii|
7+
|剑指 Offer 36. 二叉搜索树与双向链表|7|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof|
8+
|98. 验证二叉搜索树|7|https://leetcode-cn.com/problems/validate-binary-search-tree|
9+
|148. 排序链表|7|https://leetcode-cn.com/problems/sort-list|
10+
|200. 岛屿数量|6|https://leetcode-cn.com/problems/number-of-islands|
11+
|328. 奇偶链表|6|https://leetcode-cn.com/problems/odd-even-linked-list|
12+
|23. 合并K个排序链表|5|https://leetcode-cn.com/problems/merge-k-sorted-lists|
13+
|306. 累加数|5|https://leetcode-cn.com/problems/additive-number|
14+
|110. 平衡二叉树|5|https://leetcode-cn.com/problems/balanced-binary-tree|
15+
|剑指 Offer 54. 二叉搜索树的第k大节点|5|https://leetcode-cn.com/problems/er-cha-sou-suo-shu-de-di-kda-jie-dian-lcof|
16+
|56. 合并区间|5|https://leetcode-cn.com/problems/merge-intervals|
17+
|33. 搜索旋转排序数组|5|https://leetcode-cn.com/problems/search-in-rotated-sorted-array|
18+
|2. 两数相加|5|https://leetcode-cn.com/problems/add-two-numbers|
19+
|146. LRU缓存机制|4|https://leetcode-cn.com/problems/lru-cache|
20+
|94. 二叉树的中序遍历|4|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
21+
|93. 复原IP地址|4|https://leetcode-cn.com/problems/restore-ip-addresses|
22+
|113. 路径总和 II|4|https://leetcode-cn.com/problems/path-sum-ii|
23+
|239. 滑动窗口最大值|4|https://leetcode-cn.com/problems/sliding-window-maximum|
24+
|958. 二叉树的完全性检验|4|https://leetcode-cn.com/problems/check-completeness-of-a-binary-tree|
25+
|543. 二叉树的直径|4|https://leetcode-cn.com/problems/diameter-of-binary-tree|
26+
|25. K 个一组翻转链表|4|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
27+
|104. 二叉树的最大深度|4|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
28+
|222. 完全二叉树的节点个数|3|https://leetcode-cn.com/problems/count-complete-tree-nodes|
29+
|83. 删除排序链表中的重复元素|3|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list|
30+
|64. 最小路径和|3|https://leetcode-cn.com/problems/minimum-path-sum|
31+
|695. 岛屿的最大面积|3|https://leetcode-cn.com/problems/max-area-of-island|
32+
|剑指 Offer 27. 二叉树的镜像|3|https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof|
33+
|74. 搜索二维矩阵|3|https://leetcode-cn.com/problems/search-a-2d-matrix|
34+
|142. 环形链表 II|3|https://leetcode-cn.com/problems/linked-list-cycle-ii|
35+
|369. 给单链表加一|3|https://leetcode-cn.com/problems/plus-one-linked-list|
36+
|189. 旋转数组|3|https://leetcode-cn.com/problems/rotate-array|
37+
|32. 最长有效括号|3|https://leetcode-cn.com/problems/longest-valid-parentheses|
38+
|498. 对角线遍历|3|https://leetcode-cn.com/problems/diagonal-traverse|
39+
|530. 二叉搜索树的最小绝对差|3|https://leetcode-cn.com/problems/minimum-absolute-difference-in-bst|
40+
|814. 二叉树剪枝|2|https://leetcode-cn.com/problems/binary-tree-pruning|
41+
|22. 括号生成|2|https://leetcode-cn.com/problems/generate-parentheses|
42+
|1026. 节点与其祖先之间的最大差值|2|https://leetcode-cn.com/problems/maximum-difference-between-node-and-ancestor|
43+
|199. 二叉树的右视图|2|https://leetcode-cn.com/problems/binary-tree-right-side-view|
44+
|69. x 的平方根|2|https://leetcode-cn.com/problems/sqrtx|
45+
|21. 合并两个有序链表|2|https://leetcode-cn.com/problems/merge-two-sorted-lists|
46+
|86. 分隔链表|2|https://leetcode-cn.com/problems/partition-list|
47+
|547. 省份数量(原朋友圈)|2|https://leetcode-cn.com/problems/number-of-provinces|
48+
|662. 二叉树最大宽度|2|https://leetcode-cn.com/problems/maximum-width-of-binary-tree|
49+
|34. 在排序数组中查找元素的第一个和最后一个位置|2|https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array|
50+
|674. 最长连续递增序列|2|https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence|
51+
|101. 对称二叉树|2|https://leetcode-cn.com/problems/symmetric-tree|
52+
|986. 区间列表的交集|2|https://leetcode-cn.com/problems/interval-list-intersections|
53+
|剑指 Offer 22. 链表中倒数第k个节点|2|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
54+
|54. 螺旋矩阵|2|https://leetcode-cn.com/problems/spiral-matrix|
55+
|143. 重排链表|2|https://leetcode-cn.com/problems/reorder-list|
56+
|7. 整数反转|2|https://leetcode-cn.com/problems/reverse-integer|
57+
|386. 字典序排数|2|https://leetcode-cn.com/problems/lexicographical-numbers|
58+
|82. 删除排序链表中的重复元素 II|2|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-list-ii|
59+
|232. 用栈实现队列|2|https://leetcode-cn.com/problems/implement-queue-using-stacks|
60+
|1038. 从二叉搜索树到更大和树|2|https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree|
61+
|206. 反转链表|2|https://leetcode-cn.com/problems/reverse-linked-list|
62+
|400. 第N个数字|2|https://leetcode-cn.com/problems/nth-digit|
63+
|221. 最大正方形|2|https://leetcode-cn.com/problems/maximal-square|
64+
|1. 两数之和|2|https://leetcode-cn.com/problems/two-sum|
65+
|5. 最长回文子串|2|https://leetcode-cn.com/problems/longest-palindromic-substring|
66+
|402. 移掉K位数字|2|https://leetcode-cn.com/problems/remove-k-digits|
67+
|52. N皇后 II|1|https://leetcode-cn.com/problems/n-queens-ii|
68+
|103. 二叉树的锯齿形层次遍历|1|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
69+
|8. 字符串转换整数 (atoi)|1|https://leetcode-cn.com/problems/string-to-integer-atoi|
70+
|145. 二叉树的后序遍历|1|https://leetcode-cn.com/problems/binary-tree-postorder-traversal|
71+
|41. 缺失的第一个正数|1|https://leetcode-cn.com/problems/first-missing-positive|
72+
|剑指 Offer 45. 把数组排成最小的数|1|https://leetcode-cn.com/problems/ba-shu-zu-pai-cheng-zui-xiao-de-shu-lcof|
73+
|226. 翻转二叉树|1|https://leetcode-cn.com/problems/invert-binary-tree|
74+
|补充题12. 二叉树的下一个节点|1||
75+
|394. 字符串解码|1|https://leetcode-cn.com/problems/decode-string|
76+
|24. 两两交换链表中的节点|1|https://leetcode-cn.com/problems/swap-nodes-in-pairs|
77+
|141. 环形链表|1|https://leetcode-cn.com/problems/linked-list-cycle|
78+
|442. 数组中重复的数据|1|https://leetcode-cn.com/problems/find-all-duplicates-in-an-array|
79+
|补充题4. 手撕快速排序|1||
80+
|14. 最长公共前缀|1|https://leetcode-cn.com/problems/longest-common-prefix|
81+
|297. 二叉树的序列化与反序列化|1|https://leetcode-cn.com/problems/serialize-and-deserialize-binary-tree|
82+
|242. 有效的字母异位词|1|https://leetcode-cn.com/problems/valid-anagram|
83+
|235. 二叉搜索树的最近公共祖先|1|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-search-tree|
84+
|240. 搜索二维矩阵 II|1|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
85+
|349. 两个数组的交集|1|https://leetcode-cn.com/problems/intersection-of-two-arrays|
86+
|562. 矩阵中最长的连续1线段|1|https://leetcode-cn.com/problems/longest-line-of-consecutive-one-in-matrix|
87+
|305. 岛屿数量 II|1|https://leetcode-cn.com/problems/number-of-islands-ii|
88+
|99. 恢复二叉搜索树|1|https://leetcode-cn.com/problems/recover-binary-search-tree|
89+
|108. 将有序数组转换为二叉搜索树|1|https://leetcode-cn.com/problems/convert-sorted-array-to-binary-search-tree|
90+
|560. 和为K的子数组|1|https://leetcode-cn.com/problems/subarray-sum-equals-k|
91+
|62. 不同路径|1|https://leetcode-cn.com/problems/unique-paths|
92+
|26. 删除排序数组中的重复项|1|https://leetcode-cn.com/problems/remove-duplicates-from-sorted-array|
93+
|435. 无重叠区间|1|https://leetcode-cn.com/problems/non-overlapping-intervals|
94+
|136. 只出现一次的数字|1|https://leetcode-cn.com/problems/single-number|
95+
|889. 根据前序和后序遍历构造二叉树|1|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-postorder-traversal|
96+
|剑指 Offer 09. 用两个栈实现队列|1|https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof|
97+
|236. 二叉树的最近公共祖先|1|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree|
98+
|329. 矩阵中的最长递增路径|1|https://leetcode-cn.com/problems/longest-increasing-path-in-a-matrix|
99+
|102. 二叉树的层序遍历|1|https://leetcode-cn.com/problems/binary-tree-level-order-traversal|
100+
|316. 去除重复字母|1|https://leetcode-cn.com/problems/remove-duplicate-letters|
101+
|312. 戳气球|1|https://leetcode-cn.com/problems/burst-balloons|
102+
|208. 实现 Trie (前缀树)|1|https://leetcode-cn.com/problems/implement-trie-prefix-tree|
103+
|405. 数字转换为十六进制数|1|https://leetcode-cn.com/problems/convert-a-number-to-hexadecimal|
104+
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search|
105+
|20. 有效的括号|1|https://leetcode-cn.com/problems/valid-parentheses|
106+
|516. 最长回文子序列|1|https://leetcode-cn.com/problems/longest-palindromic-subsequence|
107+
|151. 翻转字符串里的单词|1|https://leetcode-cn.com/problems/reverse-words-in-a-string|
108+
|416. 分割等和子集|1|https://leetcode-cn.com/problems/partition-equal-subset-sum|
109+
|572. 另一个树的子树|1|https://leetcode-cn.com/problems/subtree-of-another-tree|
110+
|450. 删除二叉搜索树中的节点|1|https://leetcode-cn.com/problems/delete-node-in-a-bst|
111+
|48. 旋转图像|1|https://leetcode-cn.com/problems/rotate-image|
112+
|剑指 Offer 25. 合并两个排序的链表|1|https://leetcode-cn.com/problems/he-bing-liang-ge-pai-xu-de-lian-biao-lcof|
113+
|4. 寻找两个正序数组的中位数|1|https://leetcode-cn.com/problems/median-of-two-sorted-arrays|
114+
|剑指 Offer 24. 反转链表|1|https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof|
115+
|556. 下一个更大元素 III|1|https://leetcode-cn.com/problems/next-greater-element-iii|
116+
|658. 找到 K 个最接近的元素|1|https://leetcode-cn.com/problems/find-k-closest-elements|
117+
|剑指 Offer 11. 旋转数组的最小数字|1|https://leetcode-cn.com/problems/xuan-zhuan-shu-zu-de-zui-xiao-shu-zi-lcof|
118+
|17. 电话号码的字母组合|1|https://leetcode-cn.com/problems/letter-combinations-of-a-phone-number|
119+
|168. Excel表列名称|1|https://leetcode-cn.com/problems/excel-sheet-column-title|
120+
|43. 字符串相乘|1|https://leetcode-cn.com/problems/multiply-strings|
121+
|31. 下一个排列|1|https://leetcode-cn.com/problems/next-permutation|
122+
|105. 从前序与中序遍历序列构造二叉树|1|https://leetcode-cn.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal|
123+
|468. 验证IP地址|1|https://leetcode-cn.com/problems/validate-ip-address|
124+
|109. 有序链表转换二叉搜索树|1|https://leetcode-cn.com/problems/convert-sorted-list-to-binary-search-tree|
125+
|71. 简化路径|1|https://leetcode-cn.com/problems/simplify-path|
126+
|124. 二叉树中的最大路径和|1|https://leetcode-cn.com/problems/binary-tree-maximum-path-sum|
127+
|79. 单词搜索|1|https://leetcode-cn.com/problems/word-search|
128+
|剑指 Offer 32 - I. 从上到下打印二叉树|1|https://leetcode-cn.com/problems/cong-shang-dao-xia-da-yin-er-cha-shu-lcof|
129+
|60. 第k个排列|1|https://leetcode-cn.com/problems/permutation-sequence|
130+
|130. 被围绕的区域|1|https://leetcode-cn.com/problems/surrounded-regions|
131+
|40. 组合总和 II|1|https://leetcode-cn.com/problems/combination-sum-ii|
132+
|59. 螺旋矩阵 II|1|https://leetcode-cn.com/problems/spiral-matrix-ii|
133+
|225. 用队列实现栈|1|https://leetcode-cn.com/problems/implement-stack-using-queues|
134+
|47. 全排列 II|1|https://leetcode-cn.com/problems/permutations-ii|
135+
|343. 整数拆分|1|https://leetcode-cn.com/problems/integer-break|
136+
|448. 找到所有数组中消失的数字|1|https://leetcode-cn.com/problems/find-all-numbers-disappeared-in-an-array|
137+
|152. 乘积最大子数组|1|https://leetcode-cn.com/problems/maximum-product-subarray|
138+
|259. 较小的三数之和|1|https://leetcode-cn.com/problems/3sum-smaller|
139+
|415. 字符串相加|1|https://leetcode-cn.com/problems/add-strings|
140+
|257. 二叉树的所有路径|1|https://leetcode-cn.com/problems/binary-tree-paths|
141+
|540. 有序数组中的单一元素|1|https://leetcode-cn.com/problems/single-element-in-a-sorted-array|
142+
|1325. 删除给定值的叶子节点|1|https://leetcode-cn.com/problems/delete-leaves-with-a-given-value|
143+
|160. 相交链表|1|https://leetcode-cn.com/problems/intersection-of-two-linked-lists|
144+
|42. 接雨水|1|https://leetcode-cn.com/problems/trapping-rain-water|
145+
|剑指 Offer 12. 矩阵中的路径|1|https://leetcode-cn.com/problems/ju-zhen-zhong-de-lu-jing-lcof|

0 commit comments

Comments
 (0)