Skip to content

Commit f792f0e

Browse files
authored
Merge pull request #11 from afatcoder/master
merge master
2 parents 737fc63 + da2c8c8 commit f792f0e

File tree

8 files changed

+378
-283
lines changed

8 files changed

+378
-283
lines changed

README.md

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

1818
![公众号:一个搬砖的胖子](https://github.com/afatcoder/LeetcodeTop/blob/master/img/wechat.png)
1919

20-
:link:友情链接:我的好友龙哥目前建了个开源免费的内推项目[AwesomeJob](https://github.com/Dikea/AwesomeJob),致力于帮助学生找到实习、校招内推机会,帮助企业员工找到合适的实习生、校招生,减少信息隔阂,欢迎Star⭐
20+
:link:友情链接:我的好友阿秀前段时间收集了超过1000本计算机经典书籍的PDF,包括C++、Java、Python、操作系统、计算机网络、数据库等方面的书籍,基本上你能听过的都在里面了。这是他的仓库[CS-Books](https://github.com/forthespada/CS-Books),大家可以去看看,以后看书不花钱不是梦了哈哈,欢迎Star⭐
2121

2222
:information_source:数据来源:牛客网笔经面经,题目的原始文章链接已放在[issues](https://github.com/afatcoder/LeetcodeTop/issues)
2323

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

26-
## 美团(牛客2020.8.15~牛客2021.3.5号面经
26+
## 美团(牛客2020.8.15~牛客2021.3.30号面经
2727
<details>
2828
<summary>按岗位分类</summary>
2929

@@ -35,6 +35,9 @@
3535
- [数据开发](https://github.com/afatcoder/LeetcodeTop/blob/master/meituan/data.md)
3636
</details>
3737

38+
## 微软(更新至牛客3.20日的面经)
39+
- [SDE](https://github.com/afatcoder/LeetcodeTop/blob/master/microsoft/SDE.md)
40+
3841
## 猿辅导(更新至牛客3.5日的面经)
3942
<details>
4043
<summary>按岗位分类</summary>
@@ -71,10 +74,6 @@
7174
- [测试](https://github.com/afatcoder/LeetcodeTop/blob/master/bytedance/test.md)
7275
</details>
7376

74-
## 微软(更新至牛客11.23日的面经)
75-
- [SDE](https://github.com/afatcoder/LeetcodeTop/blob/master/microsoft/SDE.md)
76-
77-
7877
## 百度(更新至牛客8.7日的面经)
7978
<details>
8079
<summary>按岗位分类</summary>

meituan/algorithm.md

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,26 @@
22
若想按部门/难度/题型筛选题目,请进入[CodeTop](https://codetop.cc)查询
33
|题目|出现次数|链接|
44
|-|-|-|
5-
|121. 买卖股票的最佳时机|2|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock|
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|
67
|128. 最长连续序列|2|https://leetcode-cn.com/problems/longest-consecutive-sequence|
7-
|补充题4. 手撕快速排序|2||
88
|剑指 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|
10+
|21. 合并两个有序链表|1|https://leetcode-cn.com/problems/merge-two-sorted-lists|
11+
|3. 无重复字符的最长子串|1|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters|
12+
|50. Pow(x, n)|1|https://leetcode-cn.com/problems/powx-n|
13+
|7. 整数反转|1|https://leetcode-cn.com/problems/reverse-integer|
14+
|410. 分割数组的最大值|1|https://leetcode-cn.com/problems/split-array-largest-sum|
15+
|25. K 个一组翻转链表|1|https://leetcode-cn.com/problems/reverse-nodes-in-k-group|
16+
|146. LRU缓存机制|1|https://leetcode-cn.com/problems/lru-cache|
917
|15. 三数之和|1|https://leetcode-cn.com/problems/3sum|
10-
|39. 组合总和|1|https://leetcode-cn.com/problems/combination-sum|
11-
|73. 矩阵置零|1|https://leetcode-cn.com/problems/set-matrix-zeroes|
1218
|718. 最长重复子数组|1|https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray|
13-
|剑指 Offer 22. 链表中倒数第k个节点|1|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|
14-
|695. 岛屿的最大面积|1|https://leetcode-cn.com/problems/max-area-of-island|
1519
|2. 两数相加|1|https://leetcode-cn.com/problems/add-two-numbers|
16-
|面试题 17.24. 最大子矩阵|1|https://leetcode-cn.com/problems/max-submatrix-lcci|
1720
|226. 翻转二叉树|1|https://leetcode-cn.com/problems/invert-binary-tree|
18-
|146. LRU缓存机制|1|https://leetcode-cn.com/problems/lru-cache|
19-
|300. 最长上升子序列|1|https://leetcode-cn.com/problems/longest-increasing-subsequence|
2021
|剑指 Offer 40. 最小的k个数|1|https://leetcode-cn.com/problems/zui-xiao-de-kge-shu-lcof|
21-
|215. 数组中的第K个最大元素|1|https://leetcode-cn.com/problems/kth-largest-element-in-an-array|
22+
|73. 矩阵置零|1|https://leetcode-cn.com/problems/set-matrix-zeroes|
23+
|695. 岛屿的最大面积|1|https://leetcode-cn.com/problems/max-area-of-island|
24+
|面试题 17.24. 最大子矩阵|1|https://leetcode-cn.com/problems/max-submatrix-lcci|
25+
|300. 最长上升子序列|1|https://leetcode-cn.com/problems/longest-increasing-subsequence|
26+
|39. 组合总和|1|https://leetcode-cn.com/problems/combination-sum|
27+
|剑指 Offer 22. 链表中倒数第k个节点|1|https://leetcode-cn.com/problems/lian-biao-zhong-dao-shu-di-kge-jie-dian-lcof|

0 commit comments

Comments
 (0)