当前位置:   article > 正文

leetcode-30. 串联所有单词的子串

leetcode-30. 串联所有单词的子串
https://leetcode.cn/problems/substring-with-concatenation-of-all-words/description/?envType=study-plan-v2&envId=top-interview-150
给定一个字符串 s 和一个字符串数组 words。 words 中所有字符串 长度相同。

 s 中的 串联子串 是指一个包含  words 中所有字符串以任意顺序排列连接起来的子串。

例如,如果 words = ["ab","cd","ef"], 那么 "abcdef", "abefcd","cdabef", "cdefab","efabcd", 和 "efcdab" 都是串联子串。 "acdbef" 不是串联子串,因为他不是任何 words 排列的连接。
返回所有串联子串在 s 中的开始索引。你可以以 任意顺序 返回答案。
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
class Solution {

    public List<Integer> findSubstring(String s, String[] words) {
        int len = 0;
        Map<String, AtomicInteger> wordMap = new HashMap<>();
        for (String word : words) {
            len += word.length();
            wordMap.computeIfAbsent(word, it -> new AtomicInteger()).getAndIncrement();
        }
        List<Integer> res = new ArrayList<>();
        if (s.length() < len) {
            return res;
        }

        int wordLen = words[0].length();
        for (int i = 0; i + len <= s.length(); i++) {
            if (hit(s, i, len, wordLen, wordMap)) {
                res.add(i);
            }
        }
        return res;
    }

    private boolean hit(String s, int pos, int len, int wordLen, Map<String, AtomicInteger> wordMap) {
        Map<String, AtomicInteger> map = new HashMap<>();
        for (int i = 0; i < len;) {
            map.computeIfAbsent(
                    s.substring(pos+i, pos+i+wordLen),
                   it -> new AtomicInteger()
            ).getAndIncrement();
            i+= wordLen;
        }

        for (Map.Entry<String, AtomicInteger> entry : wordMap.entrySet()) {
            AtomicInteger now = map.get(entry.getKey());
            if (null == now || now.get() < entry.getValue().get()) {
                return false;
            }
        }
        return true;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/681303
推荐阅读
相关标签
  

闽ICP备14008679号