Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 73aec4c

Browse files
update美团至牛客2021年4月23日面经
1 parent cd7d1a3 commit 73aec4c

File tree

7 files changed

+223
-159
lines changed

7 files changed

+223
-159
lines changed

‎README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,19 @@
2323

2424
:warning:若转载文章,需注明本仓库地址
2525

26-
## 腾讯(更新牛客21.1.1~21.4.12日的面经)
26+
## 美团(更新至牛客2021年4月23日号面经)
27+
<details>
28+
<summary>按岗位分类</summary>
29+
30+
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/backend.md)
31+
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/algorithm.md)
32+
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/client.md)
33+
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/frontend.md)
34+
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/test.md)
35+
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/data.md)
36+
</details>
37+
38+
## 腾讯(更新至牛客21.4.12日的面经)
2739
<details>
2840
<summary>按岗位分类</summary>
2941

@@ -46,18 +58,6 @@
4658
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/test.md)
4759
</details>
4860

49-
## 美团(牛客2020年8月15日~牛客2021年3月30日号面经)
50-
<details>
51-
<summary>按岗位分类</summary>
52-
53-
- [后端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/backend.md)
54-
- [算法](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/algorithm.md)
55-
- [客户端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/client.md)
56-
- [前端](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/frontend.md)
57-
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/test.md)
58-
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/data.md)
59-
</details>
60-
6161
## 微软(更新至牛客3.20日的面经)
6262
- [SDE](https://github.com/afatcoder/LeetcodeTop/blob/master/microsoft/SDE.md)
6363

‎meituan/algorithm.md

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
11
# 算法
22
若想按部门/难度/题型筛选题目,请进入[CodeTop](https://codetop.cc)查询
3+
34
|题目|出现次数|链接|
45
|-|-|-|
5-
|补充题4. 手撕快速排序|4|https://leetcode-cn.com/problems/sort-an-array|
6-
|121. 买卖股票的最佳时机|3|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
6+
|补充题4. 手撕快速排序|5|https://leetcode-cn.com/problems/sort-an-array|
7+
|121. 买卖股票的最佳时机|4|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
8+
|215. 数组中的第K个最大元素|4|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
79
|128. 最长连续序列|2|https://leetcode-cn.com/problems/longest-consecutive-sequence|
10+
|1143. 最长公共子序列|2|https://leetcode-cn.com/problems/longest-common-subsequence|
11+
|498. 对角线遍历|2|https://leetcode-cn.com/problems/diagonal-traverse|
812
|剑指 Offer 65. 不用加减乘除做加法|2|https://leetcode-cn.com/problems/bu-yong-jia-jian-cheng-chu-zuo-jia-fa-lcof|
9-
|215. 数组中的第K个最大元素|2|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
13+
|53. 最大子序和|2|https://leetcode-cn.com/problems/maximum-subarray|
14+
|2. 两数相加|2|https://leetcode-cn.com/problems/add-two-numbers|
15+
|718. 最长重复子数组|2|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
1016
|21. 合并两个有序链表|1|https://leetcode-cn.com/problems/merge-two-sorted-lists|
17+
|560. 和为K的子数组|1|https://leetcode-cn.com/problems/subarray-sum-equals-k|
18+
|5. 最长回文子串|1|https://leetcode-cn.com/problems/longest-palindromic-substring|
19+
|20. 有效的括号|1|https://leetcode-cn.com/problems/valid-parentheses|
20+
|94. 二叉树的中序遍历|1|https://leetcode-cn.com/problems/binary-tree-inorder-traversal|
21+
|104. 二叉树的最大深度|1|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree|
22+
|69. x 的平方根|1|https://leetcode-cn.com/problems/sqrtx|
23+
|240. 搜索二维矩阵 II|1|https://leetcode-cn.com/problems/search-a-2d-matrix-ii|
24+
|76. 最小覆盖子串|1|https://leetcode-cn.com/problems/minimum-window-substring|
25+
|143. 重排链表|1|https://leetcode-cn.com/problems/reorder-list|
26+
|103. 二叉树的锯齿形层次遍历|1|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal|
27+
|208. 实现 Trie (前缀树)|1|https://leetcode-cn.com/problems/implement-trie-prefix-tree|
1128
|3. 无重复字符的最长子串|1|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
1229
|50. Pow(x, n)|1|https://leetcode-cn.com/problems/powx-n|
1330
|7. 整数反转|1|https://leetcode-cn.com/problems/reverse-integer|
1431
|410. 分割数组的最大值|1|https://leetcode-cn.com/problems/split-array-largest-sum|
1532
|25. K 个一组翻转链表|1|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
1633
|146. LRU缓存机制|1|https://leetcode-cn.com/problems/lru-cache|
1734
|15. 三数之和|1|https://leetcode-cn.com/problems/3sum|
18-
|718. 最长重复子数组|1|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
19-
|2. 两数相加|1|https://leetcode-cn.com/problems/add-two-numbers|
2035
|226. 翻转二叉树|1|https://leetcode-cn.com/problems/invert-binary-tree|
2136
|剑指 Offer 40. 最小的k个数|1|https://leetcode-cn.com/problems/zui-xiao-de-kge-shu-lcof|
2237
|73. 矩阵置零|1|https://leetcode-cn.com/problems/set-matrix-zeroes|

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /