Substring with Concatenation of All Words

本文介绍了一种高效的字符串匹配算法,该算法能在给定的字符串中找到由特定单词组成的子串的所有起始索引位置,适用于所有相同长度的单词列表。通过使用哈希映射来存储单词及其出现次数,算法能快速地检查子串是否符合要求。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

You are given a string, S, and a list of words, L, that are all of the same length. Find all starting indices of substring(s) in S that is a concatenation of each word in L exactly once and without any intervening characters.

For example, given:
S: "barfoothefoobarman"
L: ["foo", "bar"]

You should return the indices: [0,9].
(order does not matter).

public class Solution {
    public ArrayList<Integer> findSubstring(String S, String[] L) {
		// Start typing your Java solution below
		// DO NOT write main() function
		ArrayList<Integer> res = new ArrayList<Integer>();
		int words_num = L.length;
		if(words_num <= 0)
			return res;
		HashMap<String, Integer> words = new HashMap<String, Integer>();
		HashMap<String, Integer> curString = new HashMap<String, Integer>();
		for(int i = 0; i < words_num; i++){
			if(words.get(L[i]) != null)
				words.put(L[i], words.get(L[i]) + 1);
			else
				words.put(L[i], 1);
		}
		int len = L[0].length();
		for(int i = 0; i <= S.length() - words_num * len; i++){// i 为S截取部分的起始坐标,末尾不及words_num * len长度的不用比较
			curString.clear();
			for(int j = 0; j < words_num; j++){
				String cur = S.substring(i + j * len, i + j * len + len);// 截取len长度的词
				if(!words.containsKey(cur))// 比较
					break;
				if(curString.get(cur) != null)// 统计个数
					curString.put(cur, curString.get(cur) + 1);
				else
					curString.put(cur, 1);
				if(curString.get(cur) > words.get(cur))// 超出个数
					break;
				if(j == words_num - 1)// 全部词汇用完
					res.add(i);
			}
		}
		return res;
	}
}

每次截取S的一部分逐个比较L中的词
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值