- 浏览: 137610 次
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).
For example,
S = "ADOBECODEBANC"
T = "ABC"
Minimum window is "BANC".
Note:
If there is no such window in S that covers all characters in T, return the emtpy string "".
If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.
[分析] 首先明确下题意,在S中寻找包含完整T字符串的最短子串,T中字符可能有重复。类似Longest Substring Without Repeating Characters, 思路也是借助哈希表和两指针表示的滑动窗口。右指针不断往前走,当前窗口包含整个T时前移左指针以缩减窗口使得窗口是在当前右指针位置处的最小窗口,缩减规则:左指针指向的字符非T中字符或者窗口中该字符个数多于T中的个数。缩减后窗口大小若小于全局最小窗口则更新全局最小窗口相关变量。实现中 i, j 表示当前考察窗口的左右边界指针,left, right表示满足条件的最小窗口的左右边界指针,变量counter表示窗口包含T字符的个数。needToFind表存储了T中每个字符出现的个数,hasFound表存储当前窗口包含各待找字符的个数。
[ref]
http://www.cnblogs.com/TenosDoIt/p/3461301.html
For example,
S = "ADOBECODEBANC"
T = "ABC"
Minimum window is "BANC".
Note:
If there is no such window in S that covers all characters in T, return the emtpy string "".
If there are multiple such windows, you are guaranteed that there will always be only one unique minimum window in S.
[分析] 首先明确下题意,在S中寻找包含完整T字符串的最短子串,T中字符可能有重复。类似Longest Substring Without Repeating Characters, 思路也是借助哈希表和两指针表示的滑动窗口。右指针不断往前走,当前窗口包含整个T时前移左指针以缩减窗口使得窗口是在当前右指针位置处的最小窗口,缩减规则:左指针指向的字符非T中字符或者窗口中该字符个数多于T中的个数。缩减后窗口大小若小于全局最小窗口则更新全局最小窗口相关变量。实现中 i, j 表示当前考察窗口的左右边界指针,left, right表示满足条件的最小窗口的左右边界指针,变量counter表示窗口包含T字符的个数。needToFind表存储了T中每个字符出现的个数,hasFound表存储当前窗口包含各待找字符的个数。
[ref]
http://www.cnblogs.com/TenosDoIt/p/3461301.html
public String minWindow(String s, String t) { if (s == null || t == null) return ""; int counter = 0; int sLen = s.length(), tLen = t.length(); int[] needToFind = new int[256]; for (int i = 0; i < tLen; i++) needToFind[t.charAt(i)]++; int[] hasFound = new int[256]; int left = -1, right = -1; int minLen = sLen + 1; for (int i = 0, j = 0; j < sLen; j++) { char charj = s.charAt(j); if (needToFind[charj] == 0) continue; hasFound[charj]++; if (hasFound[charj] <= needToFind[charj]) counter++; if (counter >= tLen) { while (needToFind[s.charAt(i)] == 0 || (hasFound[s.charAt(i)] > needToFind[s.charAt(i)])) { if (needToFind[s.charAt(i)] > 0) hasFound[s.charAt(i)]--; i++; } if (j - i + 1 < minLen) { left = i; right = j; minLen = j - i + 1; } } } return left != -1 ? s.substring(left, right + 1) : ""; }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1104[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Read N Characters Given Read4 II - Call Multiple Times
2015-08-28 09:00 852The API: int read4(char *buf) r ... -
Leetcode - Read N Characters Given Read4
2015-08-27 20:56 691The API: int read4(char *buf) r ... -
Leetcode - One Edit Distance
2015-08-27 20:26 542[分析] 两字符串相同或者长度差异大于等于2都不符合要求,只需 ... -
Leetcode - Isomorphic Strings
2015-08-23 09:51 547[分析] 思路1:维护两个哈希表,char[] map, bo ... -
Leetcode - Group Shifted String
2015-08-22 16:20 1728Given a string, we can "sh ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1092A strobogrammatic number is a n ... -
Leetcode - 3Sum Smaller
2015-08-18 22:12 1490Given an array of n integers nu ... -
Leetcode - Remove Nth Node From End of List
2015-07-27 21:09 463Remove Nth Node From End of Lis ... -
Leetcode - Remove Elements
2015-07-27 10:19 446Given an array and a value, rem ... -
Leetcode - Minimum Size Subarray Sum
2015-07-22 21:01 761Given an array of n positive in ... -
Leetcode - LinedListCycleII
2015-07-22 10:18 560Given a linked list, return the ... -
Leetcode - Partition List
2015-07-22 09:09 411Given a linked list and a value ... -
Leetcode - Longest Substring with At Most Two Distinct Characters
2015-07-22 08:32 540Given a string, find the length ... -
Leetcode - 4Sum
2015-07-21 07:25 473Given an array S of n integers, ... -
Leetcode - 3Sum Closest
2015-07-20 22:09 508Given an array S of n integers, ... -
Leetcode - 3 Sum
2015-07-20 21:11 493Given an array S of n integers, ... -
Leetcode - Container With Most Water
2015-07-20 09:55 412Given n non-negative integers a ... -
Leetcode - Trapping Rain Water
2015-07-20 09:26 444Given n non-negative integers r ... -
Leetcode - Sort Colors
2015-07-17 10:04 402Given an array with n objects c ...
相关推荐
java java_leetcode-111-minimum-depth-of-binary-tree
《在IDE中高效进行LeetCode练习:leetcode-editor的深度解析》 在编程学习与技能提升的过程中,LeetCode作为一款广受欢迎的在线编程挑战平台,帮助众多开发者锻炼算法思维,提高编程能力。而为了进一步提升练习体验...
leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源
leetcode-cli-plugins leetcode-cli 的第 3 方插件。 什么是 如何使用 如何使用 插件 名称 描述 增强的命令 按公司或标签过滤问题 list 不要在同一台计算机上使 Chrome 的会话过期 login 不要在同一台计算机上使 ...
在IDE中解决LeetCode问题,支持leetcode.com与leetcode-cn.com,满足基本的做题需求。 理论上支持: IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion GoLand DataGrip Rider MPS Android Studio。
LeetCode Editor 7.4 版本的下载是一个名为 "leetcode-editor" 的压缩包文件。这个压缩包的导入过程非常简单,只需要将它直接拖入 IDEA 界面,IDEA 会自动识别并安装插件。这种方式使得安装过程无需额外的步骤,对于...
leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码
~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/vsc-leetcode-cli/bin/leetcode /usr/local/bin/leetcode 修改模板 open ~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/...
解题思路思路和LeetCode-python 503.下一个更大元素 II一致,只是这里求的是下标的距离,而不是数值倒序搜索,用到栈,栈里存储索引情况1:若栈为
leetcode-cheat 的发布 它是什么 ? 这是一个chrome 扩展,可以帮助您更高效地使用 leetcode。您可以从 重要: leetcode-cheat 现在只支持中文版。 也就是说不完全支持leetcode.com,但是你可以用leetcode-cn.com代替...
`swift-Swif-LeetCode-Utils` 是一个实用工具库,它为Swift程序员提供了方便快捷的方法来处理这些问题。这个项目可以帮助你更高效地进行LeetCode上的编程练习,提升你的解决方案的可读性和简洁性。 首先,让我们...
java java_leetcode-115-distinct-subsquences
java java_leetcode-112-path-sum
java java_leetcode-101-symmetric-tree
java java_leetcode-100-same-tree
leetcode-问题-爬虫 目录由cd problems && npx leetcode-problems-crawler -r 1-10生成cd problems && npx leetcode-problems-crawler -r 1-10 用法 爬行问题1到5: $ npx leetcode-problem-crawler -r 1-5 爬行问题...
970. 强整数对数运算function powerfulIntegers(x: number, y: number, bound: number): numb
java java_leetcode-110-balanced-binary-tree
java java_leetcode-73-set-matrix-zeroes