下一个更大元素 II 下一个更大元素 II[https://leetcode.cn/problems/next-greater-element-...
每日温度 力扣题目链接[https://leetcode.cn/problems/daily-temperatures/]利用单调栈:记录遍历过...
两个字符串的删除操作 力扣题目链接[https://leetcode.cn/problems/delete-operation-for-two-...
判断子序列 力扣题目链接[https://leetcode.cn/problems/is-subsequence/]其实就是最长公共子序列的变种...
最长公共子序列 力扣题目链接[https://leetcode.cn/problems/longest-common-subsequence/]...
最长递增子序列 leecode题目链接[https://leetcode.cn/problems/longest-increasing-subs...
打家劫舍 力扣题目链接[https://leetcode.cn/problems/house-robber/]dp含义:考虑偷下标为0-i的房间...
单词拆分 力扣题目链接[https://leetcode.cn/problems/word-break/]dp数组含义:字符串长度为i,dp[i...
爬楼梯(进阶) 力扣题目链接[https://leetcode.cn/problems/climbing-stairs/]改为:一步一个台阶,两...