主页
归档
标签
留言
统计
关于
工具
标签:Hard
(24)
2020-07-19
»
LeetCode.312.Burst Balloons 戳气球
LeetCode
(223)
Hard
(24)
困难
(70)
数组
(64)
动态规划
(25)
每日一题
(131)
2020-07-18
»
LeetCode.097.Interleaving String 交错字符串
LeetCode
(223)
Hard
(24)
困难
(70)
字符串
(25)
动态规划
(25)
双指针
(37)
回溯
(5)
DFS
(12)
每日一题
(131)
2020-07-05
»
LeetCode.044.Wildcard Matching 通配符匹配
LeetCode
(223)
Hard
(24)
困难
(70)
字符串
(25)
动态规划
(25)
Regex
(5)
每日一题
(131)
2020-07-04
»
LeetCode.032.Longest Valid Parentheses 最长有效括号
LeetCode
(223)
Hard
(24)
困难
(70)
栈
(13)
动态规划
(25)
数组
(64)
每日一题
(131)
2020-06-20
»
LeetCode.010.Regular Expression Matching 正则表达式匹配
LeetCode
(223)
Hard
(24)
困难
(70)
字符串
(25)
动态规划
(25)
Regex
(5)
每日一题
(131)
2020-06-18
»
LeetCode.1028.Recover a Tree From Preorder Traversal 从先序遍历还原二叉树
LeetCode
(223)
Hard
(24)
二叉树
(42)
困难
(70)
DFS
(12)
递归
(46)
每日一题
(131)
2020-06-16
»
LeetCode.297.Serialize and Deserialize Binary Tree 二叉树的序列化与反序列化
LeetCode
(223)
Hard
(24)
二叉树
(42)
中等
(46)
DFS
(12)
BFS
(13)
递归
(46)
每日一题
(131)
2020-06-07
»
LeetCode.126.Word Ladder II 单词接龙 II
LeetCode
(223)
Hard
(24)
DFS
(12)
BFS
(13)
Graph
(11)
困难
(70)
每日一题
(131)
2020-06-06
»
LeetCode.128.Longest Consecutive Sequence 最长连续序列
LeetCode
(223)
数组
(64)
Map
(31)
并查集
(3)
Hard
(24)
困难
(70)
每日一题
(131)
2020-05-30
»
LeetCode.084.Largest Rectangle in Histogram 柱状图中最大的矩形
LeetCode
(223)
Hard
(24)
几何
(7)
栈
(13)
单调栈
(3)
有图
(142)
困难
(70)
每日一题
(131)
2020-05-23
»
LeetCode.076.Minimum Window Substring 最小覆盖子串
LeetCode
(223)
Hard
(24)
Map
(31)
困难
(70)
滑动窗口
(5)
双指针
(37)
每日一题
(131)
有图
(142)
2020-05-16
»
LeetCode.025.Reverse Nodes in k-Group K 个一组翻转链表
LeetCode
(223)
Hard
(24)
链表
(19)
每日一题
(131)
中等
(46)
2020-05-04
»
LeetCode.045.Jump Game II 跳跃游戏2
LeetCode
(223)
Hard
(24)
贪心
(4)
BFS
(13)
DFS
(12)
困难
(70)
每日一题
(131)
2020-04-29
»
LeetCode.1095.Find in Mountain Array 山脉数组中查找目标值
LeetCode
(223)
Hard
(24)
数组
(64)
二分搜索
(12)
双指针
(37)
中等
(46)
每日一题
(131)
2020-04-26
»
LeetCode.023.Merge k Sorted Lists 合并K个排序链表
LeetCode
(223)
链表
(19)
Hard
(24)
Heap
(6)
PriorityQueue
(6)
TopK
(7)
中等
(46)
分治
(6)
每日一题
(131)
2020-04-24
»
LeetCode.剑指offer.051.数组中的逆序对
LeetCode
(223)
Hard
(24)
剑指Offer
(11)
困难
(70)
分治
(6)
每日一题
(131)
2020-04-12
»
LeetCode.程序员面试金典.1603.Intersection 交点
LeetCode
(223)
Hard
(24)
困难
(70)
面试金典
(7)
数学
(31)
几何
(7)
有公式
(26)
每日一题
(131)
2020-04-11
»
LeetCode.887.Super Egg Drop 鸡蛋掉落
LeetCode
(223)
Hard
(24)
动态规划
(25)
有公式
(26)
有图
(142)
困难
(70)
每日一题
(131)
2020-04-06
»
LeetCode.072.Edit Distance 编辑距离
LeetCode
(223)
Hard
(24)
动态规划
(25)
有公式
(26)
每日一题
(131)
2020-04-05
»
LeetCode.460.LFU Cache 实现LFU缓存
LeetCode
(223)
Hard
(24)
Map
(31)
类设计
(8)
困难
(70)
每日一题
(131)
2020-04-04
»
LeetCode.042.Trapping Rain Water 接雨水
LeetCode
(223)
Hard
(24)
数学
(31)
几何
(7)
栈
(13)
单调栈
(3)
有图
(142)
困难
(70)
每日一题
(131)
2020-02-14
»
LeetCode.041.First Missing Positive 数组中缺失的第一个正数
LeetCode
(223)
Hard
(24)
Map
(31)
数组
(64)
数组下标
(7)
困难
(70)
每日一题
(131)
2020-02-01
»
LeetCode.124.Binary Tree Maximum Path Sum 二叉树的最大路径和
LeetCode
(223)
Hard
(24)
困难
(70)
二叉树
(42)
递归
(46)
每日一题
(131)
2018-02-07
»
LeetCode.004.Median of Two Sorted Arrays 两个有序数组的中位数
LeetCode
(223)
Hard
(24)
困难
(70)
数组
(64)
二分搜索
(12)
分治
(6)
双指针
(37)
TopK
(7)
每日一题
(131)