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).
解法1:
也是滑动窗口的思路,第一层循环是对于起始点的遍历。起始点可以从0到word的长度-1。
之后就是一个词一个词的向右进。同时统计每一个词出现的次数。
C++
Java