当前位置:   article > 正文

LeetCode 30. 与所有单词相关联的字串 Substring with Concatenation of All Words

与所有单词相关联的字串

给定一个字符串 和一些长度相同的单词 words。 s 中找出可以恰好串联 words 中所有单词的子串的起始位置。

注意子串要与 words 中的单词完全匹配,中间不能有其他字符,但不需要考虑 words 中单词串联的顺序。

示例 1:

  1. 输入:
  2. s = "barfoothefoobarman",
  3. words = ["foo","bar"]
  4. 输出:
[0,9]
  1. 解释: 从索引 0 和 9 开始的子串分别是 "barfoor" 和 "foobar" 。
  2. 输出的顺序不重要, [9,0] 也是有效答案。

示例 2:

  1. 输入:
  2. s = "wordgoodstudentgoodword",
  3. words = ["word","student"]
  4. 输出:
[]

  1. public class Solution {
  2. public List<Integer> findSubstring(String s, String[] words) {
  3. ArrayList<Integer> ret=new ArrayList<Integer>();
  4. if ( s==null || words==null || words.length==0 ) {
  5. return ret;
  6. }
  7. HashMap<String,Integer> maps=new HashMap<String,Integer>();
  8. for(int i=0;i<words.length;i++){
  9. if ( maps.containsKey(words[i]) ){
  10. int t = maps.get(words[i]);
  11. maps.put(words[i], t+1);
  12. }else{
  13. maps.put(words[i],1);
  14. }
  15. }
  16. int wordLength=words[0].length();
  17. for(int i=0;i<wordLength;i++){
  18. HashMap<String,Integer> need =new HashMap<String,Integer>(maps);
  19. int start=i,end=i;
  20. int needCnt=words.length;
  21. if ( (s.length()-start)< (wordLength*needCnt)) {
  22. break;
  23. }
  24. for(;end<s.length();end+=wordLength){
  25. if ( s.length()-end < wordLength ) {
  26. break;
  27. }
  28. String tmp= s.substring(end,end+wordLength);
  29. if (maps.containsKey(tmp)){
  30. int t=need.get(tmp);
  31. need.put(tmp,t-1);
  32. if ( t>0) {
  33. needCnt--;
  34. }
  35. }
  36. if ( needCnt==0 ){
  37. while(true){
  38. String toRemove=s.substring(start,start+wordLength);
  39. if (maps.containsKey(toRemove) ){
  40. int t =need.get(toRemove);
  41. if ( t <0 ){
  42. need.put(toRemove,t+1);
  43. }
  44. else
  45. break;
  46. }
  47. start+=wordLength;
  48. }
  49. if (end-start == wordLength*(words.length-1)) {
  50. ret.add(start);
  51. }
  52. }
  53. }
  54. }
  55. return ret;
  56. }
  57. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/252618
推荐阅读
相关标签
  

闽ICP备14008679号