上一页 1 2 3 4 5 6 7 8 ··· 22 下一页
摘要: https://leetcode.cn/problems/trapping-rain-water/description/大厂经典题,接雨水暴力双指针->预处理优化->单调栈 暴力: class Solution { public int trap(int[] height) { // 暴力解法: 阅读全文
posted @ 2024-09-23 00:46 风乐 阅读(18) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/next-greater-element-ii/description/ class Solution { public int[] nextGreaterElements(int[] nums) { // 成环的单调栈题,思路1:将nums 阅读全文
posted @ 2024-09-16 03:45 风乐 阅读(26) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/next-greater-element-i/description/ 根据校验nums2中的元素是否存在于nums1中 的时机 分为不同做法 class Solution { public int[] nextGreaterElement( 阅读全文
posted @ 2024-09-15 17:17 风乐 阅读(19) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/daily-temperatures/description/ 经典单调栈,关键难点在于如何利用单调栈这个数据结构解题题意要求向右找到第一个比当前大的元素,若是暴力则是O(n^2),但是依据暴力的这个思想可以利用单调栈优化,因为求右边第一个比 阅读全文
posted @ 2024-09-15 16:45 风乐 阅读(34) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/all-paths-from-source-to-target/description/ class Solution { List<List<Integer>> res = new ArrayList<>(); int[][] g; // 阅读全文
posted @ 2024-09-14 01:32 风乐 阅读(25) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/daily-temperatures/ class Solution { public int[] dailyTemperatures(int[] temperatures) { // 经典单调栈 // 核心思想就是及时去除无用数据,保证栈中 阅读全文
posted @ 2024-09-14 00:02 风乐 阅读(30) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/longest-palindromic-subsequence/description/ class Solution { public int longestPalindromeSubseq(String s) { // f[i][j]表示 阅读全文
posted @ 2024-09-11 03:48 风乐 阅读(28) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/palindromic-substrings/ 经典题,本题有双指针和dp两种做法,dp的定义是f[i][j]表示s[i:j]是回文串容易联想到递推方程f[i][j]=f[i+1][j-1] && s[i]==s[j]又因为1个字符或者两个相 阅读全文
posted @ 2024-09-11 02:23 风乐 阅读(35) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/edit-distance/ class Solution { public int minDistance(String word1, String word2) { // 经典题编辑距离 // f[i][j]表示word1前i个字符中选择 阅读全文
posted @ 2024-09-10 22:18 风乐 阅读(42) 评论(0) 推荐(0)
摘要: https://leetcode.cn/problems/delete-operation-for-two-strings/solutions/ 两种做法,1.直接dp 2.转换题意,思考成LCS class Solution { public int minDistance(String word 阅读全文
posted @ 2024-09-10 21:43 风乐 阅读(25) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 ··· 22 下一页