438 Find All Anagrams in a String

Given a string s and a non-empty string p, find all the start indices of p's anagrams in s.

Strings consists of lowercase English letters only and the length of both strings s and p will not be larger than 20,100.

The order of output does not matter.

Example 1:

Input:
s: "cbaebabacd" p: "abc"

Output:
[0, 6]

Explanation:
The substring with start index = 0 is "cba", which is an anagram of "abc".
The substring with start index = 6 is "bac", which is an anagram of "abc".

Example 2:

Input:
s: "abab" p: "ab"

Output:
[0, 1, 2]

Explanation:
The substring with start index = 0 is "ab", which is an anagram of "ab".
The substring with start index = 1 is "ba", which is an anagram of "ab".
The substring with start index = 2 is "ab", which is an anagram of "ab".

解析:给定两个字符串,s为主串,p为子串,求出s中包含p的同字母异次序的所有起始位置。其中题目的要求是:在s中子串的字母必须和p的字母种类和数量保持一致,无顺序要求。因此我们可以统计p中字符的出现次数,然后在s中从头开始遍历,每次在s中找p字符串长度个字符,然后验证字符个数是否相等。

具体过程:定义一个长度为256的hash数组(ascii码范围),数组的索引表示字符的ascii值,记录p中字符出现的次数。然后定义两个变量left和right表示滑动窗口的左右边界,定义变量count表示字符串p中需要匹配的字符个数(即p的长度)。然后开始遍历s,在窗口右移过程中,如果right位置的字符已经在哈希表中了,说明该字符在p中有出现,则count减1,然后哈希表中该字符个数自减1,右边界right加1;如果此时count等于0,说明p中的字符在s的子串中都匹配上了,那么将此时左边界left加入结果res中;如果此时right和left的差为p的长度,说明此时应该去掉最左边的一个字符,我们看如果该字符在哈希表中的个数大于等于0,说明该字符是p中的字符。因为上面我们有让每个字符减1,如果不是p中的字符,那么在哈希表中个数应该为0,自减1后就为-1,所以这样就知道该字符是否属于p,如果我们去掉了属于p的一个字符,count自增1。

public class FindAllAnagramsinaString438 {
	public static void main(String[] args) {
		String s = "cbaebabacd";
		String p = "abc";
		System.out.println(findAnagrams(s, p));
	}
	public static List<Integer> findAnagrams(String s, String p) {
    	ArrayList<Integer> res = new ArrayList<Integer>();
    	// 定义hash表
    	int[] hash = new int[256];
    	for(int i=0;i<p.length();i++){
    		hash[p.charAt(i)]++;
    	}
    	int left=0;
    	int right=0;
    	int count=p.length();
    	while(right<s.length()){
    		// 窗口右移,相应的hash值减小,如果这个位置的Hash值是正的,
    		// 表示p字符串也包含这个, 所以count-- 
    		if(hash[s.charAt(right++)]-->0) count--;
    		// count为0表示s的子串和p对应的hash值完全一致
    		if(count==0) res.add(left);
    		// 如果当窗口大小一定的时候即窗口大小和需要比较的字符串大小一致的时候
    		// 将窗口左边的指针向右边移动,移动的同时左边的字符计数因为在第一个if的地方hash值减小过
    		// 所以需要执行对应恢复操作,即:hash值增加,count值增加
    		if(right-left==p.length()&&hash[s.charAt(left++)]++>=0) count++;
    	}
        return res;
    }
}




在C++中,要找到列表中独特的同字母异序词(anagrams),你需要首先定义一个函数来检查两个字符串是否是彼此的变位词(anagram),然后遍历整个单词列表,使用哈希集合或者`std::unordered_set`来存储已经遇到过的anagram,并判断每个新遇到的单词是否与已存在的单词是anagram。下面是一个简单的示例程序: ```cpp #include <iostream> #include <vector> #include <string> #include <unordered_set> // Function to check if two strings are anagrams bool isAnagram(const std::string& s1, const std::string& s2) { std::sort(s1.begin(), s1.end()); std::sort(s2.begin(), s2.end()); return s1 == s2; } // Function to find unique anagrams in a list std::vector<std::string> findUniqueAnagrams(std::vector<std::string>& wordList) { std::unordered_set<std::string> uniqueAnagrams; for (const auto& word : wordList) { // Skip empty strings and duplicates if (word.empty() || uniqueAnagrams.find(word) != uniqueAnagrams.end()) continue; // Check each word with others for (auto it = wordList.begin(); it != wordList.end(); ++it) { if (isAnagram(word, *it)) { uniqueAnagrams.insert(*it); } } } return std::vector<std::string>(uniqueAnagrams.begin(), uniqueAnagrams.end()); } int main() { std::vector<std::string> words = {"listen", "silent", "triangle", "integral", "act", "cat"}; std::vector<std::string> uniqueAnagramSet = findUniqueAnagrams(words); std::cout << "Unique anagrams found:\n"; for (const auto& anagram : uniqueAnagramSet) { std::cout << anagram << "\n"; } return 0; } ``` 在这个程序中,我们首先创建了一个哈希集合`uniqueAnagrams`来存储唯一的anagram。接着,在`findUniqueAnagrams`函数中,对每个单词,如果它是一个新的非空单词并且是其他某个单词的anagram,我们就将其添加到集合中。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值