forked from afatcoder/LeetcodeTop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
191 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,22 @@ | ||
算法 | ||
# 算法 | ||
|
||
|题目|出现次数|链接| | ||
|-|-|-| | ||
|103. 二叉树的锯齿形层次遍历|2|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal| | ||
|72. 编辑距离|2|https://leetcode-cn.com/problems/edit-distance| | ||
|46. 全排列|2|https://leetcode-cn.com/problems/permutations| | ||
|23. 合并K个排序链表|2|https://leetcode-cn.com/problems/merge-k-sorted-lists| | ||
|206. 反转链表|2|https://leetcode-cn.com/problems/reverse-linked-list| | ||
|103. 二叉树的锯齿形层次遍历|2|https://leetcode-cn.com/problems/binary-tree-zigzag-level-order-traversal| | ||
|144. 二叉树的前序遍历|1|https://leetcode-cn.com/problems/binary-tree-preorder-traversal| | ||
|15. 三数之和|1|https://leetcode-cn.com/problems/3sum| | ||
|补充题8. 计算数组的小和|1|https://mp.weixin.qq.com/s/0ih4W6nawzFUPSj3GOnYTQ| | ||
|300. 最长上升子序列|1|https://leetcode-cn.com/problems/longest-increasing-subsequence| | ||
|199. 二叉树的右视图|1|https://leetcode-cn.com/problems/binary-tree-right-side-view| | ||
|202. 快乐数|1|https://leetcode-cn.com/problems/happy-number| | ||
|268. 缺失数字|1|https://leetcode-cn.com/problems/missing-number| | ||
|121. 买卖股票的最佳时机|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock| | ||
|补充题4. 手撕快速排序|1|| | ||
|102. 二叉树的层序遍历|1|https://leetcode-cn.com/problems/binary-tree-level-order-traversal| | ||
|236. 二叉树的最近公共祖先|1|https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree| | ||
|322. 零钱兑换|1|https://leetcode-cn.com/problems/coin-change| | ||
|226. 翻转二叉树|1|https://leetcode-cn.com/problems/invert-binary-tree| | ||
|15. 三数之和|1|https://leetcode-cn.com/problems/3sum| | ||
|300. 最长上升子序列|1|https://leetcode-cn.com/problems/longest-increasing-subsequence| | ||
|72. 编辑距离|1|https://leetcode-cn.com/problems/edit-distance| | ||
|46. 全排列|1|https://leetcode-cn.com/problems/permutations| | ||
|199. 二叉树的右视图|1|https://leetcode-cn.com/problems/binary-tree-right-side-view| | ||
|226. 翻转二叉树|1|https://leetcode-cn.com/problems/invert-binary-tree| |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
数据研发 | ||
# 数据研发 | ||
|
||
|题目|出现次数|链接| | ||
|-|-|-| | ||
|5. 最长回文子串|1|https://leetcode-cn.com/problems/longest-palindromic-substring| | ||
|509. 斐波那契数|1|https://leetcode-cn.com/problems/fibonacci-number| | ||
|34. 在排序数组中查找元素的第一个和最后一个位置|1|https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array| | ||
|35. 搜索插入位置|1|https://leetcode-cn.com/problems/search-insert-position| | ||
|93. 复原IP地址|1|https://leetcode-cn.com/problems/restore-ip-addresses| | ||
|145. 二叉树的后序遍历|1|https://leetcode-cn.com/problems/binary-tree-postorder-traversal| | ||
|剑指 Offer 24. 反转链表|1|https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof| | ||
|144. 二叉树的前序遍历|1|https://leetcode-cn.com/problems/binary-tree-preorder-traversal| | ||
|剑指 Offer 27. 二叉树的镜像|1|https://leetcode-cn.com/problems/er-cha-shu-de-jing-xiang-lcof| | ||
|剑指 Offer 09. 用两个栈实现队列|1|https://leetcode-cn.com/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof| | ||
|112. 路径总和|1|https://leetcode-cn.com/problems/path-sum| | ||
|5. 最长回文子串|1|https://leetcode-cn.com/problems/longest-palindromic-substring| | ||
|509. 斐波那契数|1|https://leetcode-cn.com/problems/fibonacci-number| | ||
|34. 在排序数组中查找元素的第一个和最后一个位置|1|https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array| | ||
|35. 搜索插入位置|1|https://leetcode-cn.com/problems/search-insert-position| | ||
|93. 复原IP地址|1|https://leetcode-cn.com/problems/restore-ip-addresses| | ||
|240. 搜索二维矩阵 II|1|https://leetcode-cn.com/problems/search-a-2d-matrix-ii| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,20 @@ | ||
前端 | ||
# 前端 | ||
|
||
|题目|出现次数|链接| | ||
|-|-|-| | ||
|88. 合并两个有序数组|2|https://leetcode-cn.com/problems/merge-sorted-array| | ||
|3. 无重复字符的最长子串|2|https://leetcode-cn.com/problems/longest-substring-without-repeating-characters| | ||
|70. 爬楼梯|2|https://leetcode-cn.com/problems/climbing-stairs| | ||
|384. 打乱数组|2|https://leetcode-cn.com/problems/shuffle-an-array| | ||
|104. 二叉树的最大深度|1|https://leetcode-cn.com/problems/maximum-depth-of-binary-tree| | ||
|206. 反转链表|1|https://leetcode-cn.com/problems/reverse-linked-list| | ||
|46. 全排列|1|https://leetcode-cn.com/problems/permutations| | ||
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search| | ||
|7. 整数反转|1|https://leetcode-cn.com/problems/reverse-integer| | ||
|121. 买卖股票的最佳时机|1|https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock| | ||
|509. 斐波那契数|1|https://leetcode-cn.com/problems/fibonacci-number| | ||
|231. 2的幂|1|https://leetcode-cn.com/problems/power-of-two| | ||
|剑指 Offer 10- I. 斐波那契数列|1|https://leetcode-cn.com/problems/fei-bo-na-qi-shu-lie-lcof| | ||
|102. 二叉树的层序遍历|1|https://leetcode-cn.com/problems/binary-tree-level-order-traversal| | ||
|169. 多数元素|1|https://leetcode-cn.com/problems/majority-element| | ||
|110. 平衡二叉树|1|https://leetcode-cn.com/problems/balanced-binary-tree| | ||
|88. 合并两个有序数组|1|https://leetcode-cn.com/problems/merge-sorted-array| | ||
|704. 二分查找|1|https://leetcode-cn.com/problems/binary-search| | ||
|509. 斐波那契数|1|https://leetcode-cn.com/problems/fibonacci-number| | ||
|110. 平衡二叉树|1|https://leetcode-cn.com/problems/balanced-binary-tree| |
Oops, something went wrong.