点击上方“专知”关注获取更多AI知识!
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的相同字母异序词的起始索引。
思路:刷题日记36——Leetcode 242. Valid Anagram中是判断是否是相同字母异序词。知道了如何判断相同字母异序词之后,这个题目让我们找出s中所有的p的相同字母异序词索引,于是采用滑动窗口的思想:遍历s,判断每一个字符开始的p.size()个字符是否是p的相同字母异序词即可。
class Solution {public: vector<int> findAnagrams(string s, string p) { vector<int>m(26,0); vector<int>temp(26,0); vector<int>re; for(char x:p) { m[x-'a']++; } for(int i=0; i<s.size(); i++) { temp=m; if(temp[s[i]-'a']!=0 && i+p.size()<=s.size()) { for(int k=i; k<i+p.size();k++) temp[s[k]-'a']--; int flag=1; for(int x:temp) { if(x!=0) { flag=0; break; } } if(flag) re.push_back(i); else flag=1; } } return re; }};
人生易老,唯有陪伴最长情,加油!
以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。
专知网站查看Leetcode刷题日记:
请登录www.zhuanzhi.ai或者点击阅读原文,顶端搜索“Leetcode” 主题,取查看获得专知Leetcode所有资源!如下图所示~
群满,请扫描小助手,加入专知-LeetCode学习交流群,交流分享~
欢迎转发到你的微信群和朋友圈,分享专业AI知识!
-END-
欢迎使用专知
专知,一个新的认知方式!专注在人工智能领域为AI从业者提供专业可信的知识分发服务, 包括主题定制、主题链路、搜索发现等服务,帮你又好又快找到所需知识。
使用方法>>访问www.zhuanzhi.ai, 或点击文章下方“阅读原文”即可访问专知
中国科学院自动化研究所专知团队
@2017 专知
专 · 知
关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法、深度干货等内容。扫一扫下方关注我们的微信公众号。
点击“阅读原文”,使用专知!