Leetcode——438. Find All Anagrams in a String

2024-02-02 01:38

本文主要是介绍Leetcode——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”.

解答

使用unordered_map

class Solution1 {//超时
public:vector<int> findAnagrams(string s, string p) {vector<int> res;if(s.length()<p.length()) return res;unordered_map<char,int> mp;for(int i=0;i<p.length();i++){mp[p[i]]++;}for(int i=0;i<=s.length()-p.length();i++)//遍历每一个元素{unordered_map<char,int> m;for(int j=i;j-i<p.length();j++)//每次都更新p.length()个(这个增加了时间消耗){m[s[j]]++;}unordered_map<char,int>::iterator itr;for(itr=mp.begin();itr!=mp.end();itr++)//遍历mp中元素个数是否和m中元素个数相等,因为总数是相等的,所以两者只要有一个不一样,都会break,这里遍历mp和遍历m效果是一样的。{if(m[itr->first]==mp[itr->first]) continue;elsebreak;}if(itr==mp.end()) res.push_back(i);//两者都一样,才能加入}return res;}
};

上述方法比较耗费时间!时间复杂度是O(N*K)

可以改进上述方法
思想也是维持一个滑动的窗,不过这个窗在循环外面先初始化好,进入循环后,每次更新两个元素,即在窗首添加一个元素,在窗尾去除一个元素。

class Solution2 {//没超时,不过时间也很长(17%)
public:vector<int> findAnagrams(string s, string p) {vector<int> res;if(s.length()<p.length()) return res;unordered_map<char,int> mp;unordered_map<char,int> ms;for(int i=0;i<p.length();i++){mp[p[i]]++;ms[s[i]]++;}int i=0;do{unordered_map<char,int>::iterator itr;for(itr=mp.begin();itr!=mp.end();itr++){if(mp[itr->first]==ms[itr->first]) continue;elsebreak;}if(itr==mp.end()) res.push_back(i);ms[s[i+p.length()]]++;ms[s[i]]--;i++;}while(i+p.length()<s.length());unordered_map<char,int>::iterator itr;for(itr=mp.begin();itr!=mp.end();itr++){if(mp[itr->first]==ms[itr->first]) continue;elsebreak;}if(itr==mp.end()) res.push_back(i);return res;}
};

使用滑动窗!Sliding window!
使用一个数组,来维持,数组长度为26。85%
33ms。

class Solution {//没超时,时间太长
public:vector<int> findAnagrams(string s, string p) {vector<int> res;if(s.length()<p.length()||p.length()==0) return res;int mp[26]={0};int ms[26]={0};for(int i=0;i<p.length();i++){mp[p[i]-'a']++;ms[s[i]-'a']++;}if(isequal(mp,ms,26))res.push_back(0);for(int i=p.length();i<s.length();i++)//滑动窗{ms[s[i]-'a']++;ms[s[i-p.length()]-'a']--;if(isequal(mp,ms,26))res.push_back(i-p.length()+1);}return res;}
private:bool isequal(int a[],int b[],int n){for(int i=0;i<n;i++)if(a[i]!=b[i])return false;return true;}
};

滑动窗思想很重要!

这篇关于Leetcode——438. Find All Anagrams in a String的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/669111

相关文章

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

C#数据结构之字符串(string)详解

《C#数据结构之字符串(string)详解》:本文主要介绍C#数据结构之字符串(string),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录转义字符序列字符串的创建字符串的声明null字符串与空字符串重复单字符字符串的构造字符串的属性和常用方法属性常用方法总结摘

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

java String.join()的使用小结

《javaString.join()的使用小结》String.join()是Java8引入的一个实用方法,用于将多个字符串按照指定分隔符连接成一个字符串,本文主要介绍了javaString.join... 目录1. 方法定义2. 基本用法2.1 拼接多个字符串2.2 拼接集合中的字符串3. 使用场景和示例3

Linux find 命令完全指南及核心用法

《Linuxfind命令完全指南及核心用法》find是Linux系统最强大的文件搜索工具,支持嵌套遍历、条件筛选、执行动作,下面给大家介绍Linuxfind命令完全指南,感兴趣的朋友一起看看吧... 目录一、基础搜索模式1. 按文件名搜索(精确/模糊匹配)2. 排除指定目录/文件二、根据文件类型筛选三、时间

C# string转unicode字符的实现

《C#string转unicode字符的实现》本文主要介绍了C#string转unicode字符的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随... 目录1. 获取字符串中每个字符的 Unicode 值示例代码:输出:2. 将 Unicode 值格式化

Java中String字符串使用避坑指南

《Java中String字符串使用避坑指南》Java中的String字符串是我们日常编程中用得最多的类之一,看似简单的String使用,却隐藏着不少“坑”,如果不注意,可能会导致性能问题、意外的错误容... 目录8个避坑点如下:1. 字符串的不可变性:每次修改都创建新对象2. 使用 == 比较字符串,陷阱满

IDEA如何将String类型转json格式

《IDEA如何将String类型转json格式》在Java中,字符串字面量中的转义字符会被自动转换,但通过网络获取的字符串可能不会自动转换,为了解决IDEA无法识别JSON字符串的问题,可以在本地对字... 目录问题描述问题原因解决方案总结问题描述最近做项目需要使用Ai生成json,可生成String类型

哈希leetcode-1

目录 1前言 2.例题  2.1两数之和 2.2判断是否互为字符重排 2.3存在重复元素1 2.4存在重复元素2 2.5字母异位词分组 1前言 哈希表主要是适合于快速查找某个元素(O(1)) 当我们要频繁的查找某个元素,第一哈希表O(1),第二,二分O(log n) 一般可以分为语言自带的容器哈希和用数组模拟的简易哈希。 最简单的比如数组模拟字符存储,只要开26个c

leetcode-24Swap Nodes in Pairs

带头结点。 /*** Definition for singly-linked list.* public class ListNode {* int val;* ListNode next;* ListNode(int x) { val = x; }* }*/public class Solution {public ListNode swapPairs(L