- 浏览: 138896 次
文章分类
- 全部博客 (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
You are given a string, s, and a list of words, words, that are all of the same length. Find all starting indices of substring(s) in s that is a concatenation of each word in words exactly once and without any intervening characters.
For example, given:
s: "barfoothefoobarman"
words: ["foo", "bar"]
You should return the indices: [0,9].
(order does not matter).
[分析] 方法2的分析转载在http://segmentfault.com/a/1190000002625580
使用滑动窗口思想,始终保持words 集合中的单词在窗口中仅出现一次,变量count记录窗口中包含words集合中单词的个数,当count == words中单词个数时即找到一个符合条件的子串。
需要使用的内存空间:
1 两张HashMap, dict & currMap, 分别保存words中的单词和窗口中包含的单词,key为单词,value是单词出现个数
2 count, 记录窗口中包含words集合中单词的个数
3 left, 滑动窗口的左边界
实现的步骤:
1 遍历words,构建dict
2 以单词长度为步长,遍历字符串,若当前单词在dict中,则加入或者更新currMap, 并进入步骤3,否则清空currMap和count并且更新left到下一个单词处
3 检查当前单词在窗口中的出现次数是否超过额定值,若超过从左边收缩窗口,收缩方法:从当前左边界开始从currMap中删除单词并递减count直到遇到当前单词(也要删除)。
5 检查count是否 等于words集合单词数,若等于将当前窗口左边界加入结果,更新左边界和currMap、count
这里解释下步骤4中的收缩滑块,这是因为当前滑块中有单词的出现次数超过了额定的出现次数,那么就是需要收缩滑块来剔除这个单词,相当于是从滑块的左起点开始寻找该单词,找到之后,将该单词的右端点作为滑块新的左起点,这样就保证了滑块中所有单词都是小于等于额定出现次数,这样也保证了count计数的有效性。
遇到总单词表中不存在的单词的情况,在步骤2中已经说明,清空当前数据之后继续循环,也就是保证了滑块中是不会出现不存在单词表中的单词的。
最后,考虑最外圈循环,如果是从0开始作为滑块的初始起点,那么其实并没有遍历字符串中的所有可能子串,因为步长是单词长度,所以移动滑块的时候会跨过很多可能子串,所以要在外圈再加一层循环,这个循环的作用就是移动滑块的初始起点,所以循环次数就是单词的长度。
方法1 没有使用滑动窗口思想,会有重复计算,时间复杂度是O(n * m), n为目标字符串长度,m为words集合大小,因此效率不如方法2,其时间复杂度为O(n)
For example, given:
s: "barfoothefoobarman"
words: ["foo", "bar"]
You should return the indices: [0,9].
(order does not matter).
[分析] 方法2的分析转载在http://segmentfault.com/a/1190000002625580
使用滑动窗口思想,始终保持words 集合中的单词在窗口中仅出现一次,变量count记录窗口中包含words集合中单词的个数,当count == words中单词个数时即找到一个符合条件的子串。
需要使用的内存空间:
1 两张HashMap, dict & currMap, 分别保存words中的单词和窗口中包含的单词,key为单词,value是单词出现个数
2 count, 记录窗口中包含words集合中单词的个数
3 left, 滑动窗口的左边界
实现的步骤:
1 遍历words,构建dict
2 以单词长度为步长,遍历字符串,若当前单词在dict中,则加入或者更新currMap, 并进入步骤3,否则清空currMap和count并且更新left到下一个单词处
3 检查当前单词在窗口中的出现次数是否超过额定值,若超过从左边收缩窗口,收缩方法:从当前左边界开始从currMap中删除单词并递减count直到遇到当前单词(也要删除)。
5 检查count是否 等于words集合单词数,若等于将当前窗口左边界加入结果,更新左边界和currMap、count
这里解释下步骤4中的收缩滑块,这是因为当前滑块中有单词的出现次数超过了额定的出现次数,那么就是需要收缩滑块来剔除这个单词,相当于是从滑块的左起点开始寻找该单词,找到之后,将该单词的右端点作为滑块新的左起点,这样就保证了滑块中所有单词都是小于等于额定出现次数,这样也保证了count计数的有效性。
遇到总单词表中不存在的单词的情况,在步骤2中已经说明,清空当前数据之后继续循环,也就是保证了滑块中是不会出现不存在单词表中的单词的。
最后,考虑最外圈循环,如果是从0开始作为滑块的初始起点,那么其实并没有遍历字符串中的所有可能子串,因为步长是单词长度,所以移动滑块的时候会跨过很多可能子串,所以要在外圈再加一层循环,这个循环的作用就是移动滑块的初始起点,所以循环次数就是单词的长度。
方法1 没有使用滑动窗口思想,会有重复计算,时间复杂度是O(n * m), n为目标字符串长度,m为words集合大小,因此效率不如方法2,其时间复杂度为O(n)
// method 2: sliding window public List<Integer> findSubstring(String s, String[] words) { List<Integer> result = new ArrayList<Integer>(); if (s == null || s.length() == 0 || words == null || words.length == 0) return result; int m = words.length, n = s.length(); int wordLen = words[0].length(); HashMap<String, Integer> dict = new HashMap<String, Integer>(); for (int i = 0; i < m; i++) { if (!dict.containsKey(words[i])) dict.put(words[i], 1); else dict.put(words[i], dict.get(words[i]) + 1); } for (int i = 0; i < wordLen; i++) { HashMap<String, Integer> currMap = new HashMap<String, Integer>(); int count = 0; int left = i; for (int j = i; j + wordLen <= n; j += wordLen) { String currWord = s.substring(j, j + wordLen); if (dict.containsKey(currWord)) { if (currMap.containsKey(currWord)) { currMap.put(currWord, currMap.get(currWord) + 1); } else { currMap.put(currWord, 1); } count++; if (currMap.get(currWord) > dict.get(currWord)) { // shrinkage left edge of window while (true) { String tmp = s.substring(left, left + wordLen); currMap.put(tmp, currMap.get(tmp) - 1); left += wordLen; count--; if (tmp.equals(currWord)) break; } } // found a valid window if (count == m) { result.add(left); String leftWord = s.substring(left, left + wordLen); currMap.put(leftWord, currMap.get(leftWord) - 1); count--; left += wordLen; } } else { // find a word which is not in dict, reset all currMap.clear(); count = 0; left = j + wordLen; } } } return result; } // method 1 public List<Integer> findSubstring1(String s, String[] words) { List<Integer> result = new ArrayList<Integer>(); if (s == null || s.length() == 0 || words == null || words.length == 0) return result; int m = words.length, n = s.length(); int singleLen = words[0].length(); int targetLen = m * singleLen; HashMap<String, Integer> dict = new HashMap<String, Integer>(); for (int i = 0; i < m; i++) { if (!dict.containsKey(words[i])) dict.put(words[i], 1); else dict.put(words[i], dict.get(words[i]) + 1); } int end = n - targetLen; for (int i = 0; i <= end; i++) { HashMap<String, Integer> map = new HashMap<String, Integer>(dict); int j = i; while (j < i + targetLen) { String curr = s.substring(j, j + singleLen); Integer val = map.get(curr); if ( val != null && val > 0) { map.put(curr, val - 1); j += singleLen; } else { break; } } if (j == i + targetLen) result.add(i); } return result; }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1110[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - Read N Characters Given Read4 II - Call Multiple Times
2015-08-28 09:00 859The API: int read4(char *buf) r ... -
Leetcode - Read N Characters Given Read4
2015-08-27 20:56 697The API: int read4(char *buf) r ... -
Leetcode - One Edit Distance
2015-08-27 20:26 554[分析] 两字符串相同或者长度差异大于等于2都不符合要求,只需 ... -
Leetcode - Isomorphic Strings
2015-08-23 09:51 553[分析] 思路1:维护两个哈希表,char[] map, bo ... -
Leetcode - Group Shifted String
2015-08-22 16:20 1733Given a string, we can "sh ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1100A strobogrammatic number is a n ... -
Leetcode - 3Sum Smaller
2015-08-18 22:12 1494Given an array of n integers nu ... -
Leetcode - Remove Nth Node From End of List
2015-07-27 21:09 469Remove Nth Node From End of Lis ... -
Leetcode - Remove Elements
2015-07-27 10:19 450Given an array and a value, rem ... -
Leetcode - Sliding Window Maximum
2015-07-23 09:18 566Given an array nums, there is a ... -
Leetcode - Minimum Size Subarray Sum
2015-07-22 21:01 767Given an array of n positive in ... -
Leetcode - LinedListCycleII
2015-07-22 10:18 567Given a linked list, return the ... -
Leetcode - Partition List
2015-07-22 09:09 415Given a linked list and a value ... -
Leetcode - Longest Substring with At Most Two Distinct Characters
2015-07-22 08:32 546Given a string, find the length ... -
Leetcode - 4Sum
2015-07-21 07:25 479Given an array S of n integers, ... -
Leetcode - 3Sum Closest
2015-07-20 22:09 511Given an array S of n integers, ... -
Leetcode - 3 Sum
2015-07-20 21:11 497Given an array S of n integers, ... -
Leetcode - Container With Most Water
2015-07-20 09:55 415Given n non-negative integers a ... -
Leetcode - Trapping Rain Water
2015-07-20 09:26 449Given n non-negative integers r ...
相关推荐
js js_leetcode题解之30-substring-with-concatenation-of-all-words.js
c c语言_leetcode 0030_substring_with_concatenation_of_all_words.zip
《在IDE中高效进行LeetCode练习:leetcode-editor的深度解析》 在编程学习与技能提升的过程中,LeetCode作为一款广受欢迎的在线编程挑战平台,帮助众多开发者锻炼算法思维,提高编程能力。而为了进一步提升练习体验...
java java_leetcode-maximum-depth-of-binary-tree
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。
java java_leetcode-111-minimum-depth-of-binary-tree
LeetCode Editor 7.4 版本的下载是一个名为 "leetcode-editor" 的压缩包文件。这个压缩包的导入过程非常简单,只需要将它直接拖入 IDEA 界面,IDEA 会自动识别并安装插件。这种方式使得安装过程无需额外的步骤,对于...
leetcode-cli 一个享受 leetcode 的高效 cli 工具! 非常感谢 leetcode.com,一个非常棒的网站! ⦙⦙⦙⦙⦙⦙⦙⦙ 一个很打问题的方法。 问题来缓解离线思考。 编码前的源代码。 居住和与 leetcode.com。 下载你...
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代替...
leetcode-cli 注意:这个存储库是为了临时使用而分叉的。 注意:从 webbrowser 复制 cookie 并使用leetcode user -c可以临时修复不能。 一个享受 leetcode 的高效 cli 工具! 非常感谢 leetcode.com,一个非常棒的...
`swift-Swif-LeetCode-Utils` 是一个实用工具库,它为Swift程序员提供了方便快捷的方法来处理这些问题。这个项目可以帮助你更高效地进行LeetCode上的编程练习,提升你的解决方案的可读性和简洁性。 首先,让我们...
javascript js_leetcode题解之159-longest-substring-with-at-most-two-distinct
java java_leetcode-115-distinct-subsquences
java java_leetcode-112-path-sum