567. Permutation in String

2024-05-07 08:08
文章标签 string permutation 567

本文主要是介绍567. Permutation in String,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

567. Permutation in String

Given two strings s1 and s2, write a function to return true if s2 contains the permutation of s1. In other words, one of the first string’s permutations is the substring of the second string.

Example 1:
Input:s1 = “ab” s2 = “eidbaooo”
Output:True
Explanation: s2 contains one permutation of s1 (“ba”).
Example 2:
Input:s1= “ab” s2 = “eidboaoo”
Output: False
Note:
The input strings only contain lower case letters.
The length of both given strings is in range [1, 10,000].
先祭出来自己的低效率算法,low比算法,虽然过了,但是自己都很不满意。

bool checkInclusion1(string s1, string s2) {if (s1 == "" && s2 == "")return true;if (s1 == "" || s2 == "" || s1.size() > s2.size())return false;unordered_map<char, int> temp;for (auto x : s1)temp[x]++;for (int i = 0; i < s2.size(); i++){if (s1.find(s2[i]) != string::npos){unordered_map<char, int> tt = temp;if (s2.size() - i < s1.size())return false;string str = s2.substr(i, s1.size());for (int ii = 0; ii < s1.size(); ii++)  --tt[str[ii]];bool flag = false;for (auto x : tt){if (x.second < 0){flag = true;break;}}if (!flag)return true;}}return false;
}

算法时间复杂度为O(m*n),空间复杂度为O(2*m)

参考算法

bool checkInclusion(string s1, string s2) {if (s1.size() > s2.size())return false;int m = s1.size(), n = s2.size();vector<int> map1(26), map2(26);for (int i = 0; i < m; i++){map1[s1[i] - 'a']++;map2[s2[i] - 'a']++;}if (map1 == map2)return true;for (int i = 0; i + m < n; i++){map2[s2[i] - 'a']--;map2[s2[i + m] - 'a']++;if (map2 == map1)return true;}return false;
}

用了流动窗口的思想,虽然要求是全排列,但只要保证两个字串的每个元素的个数是相同就可以了。
时间复杂度为O(n),空间复杂度为O(n);

切记,一定要心情好的时候刷题,不然总是一头雾水,虽然做出来了,但是,效率低的自己都觉得不好意思。。。


这个题与上一个题目很类似

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”.

vector<int> findAnagrams(string s, string p) {vector<int> res;vector<int> map1(26), map2(26);int m = p.size(), n = s.size();for (int i = 0; i < m; i++){map1[p[i] - 'a']++;map2[s[i] - 'a']++;}int i = 0;for (; i + m < n; i++){if (map2 == map1)res.push_back(i);map2[s[i] - 'a']--;map2[s[i + m] - 'a']++; }//这里的 i != n 主要是针对 p 长度为1if (map2 == map1 && i != n)res.push_back(i);return res;
}

这篇关于567. Permutation in String的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

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

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类型

string字符会调用new分配堆内存吗

gcc的string默认大小是32个字节,字符串小于等于15直接保存在栈上,超过之后才会使用new分配。

hdu2072(string的应用)

单词数 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 25447    Accepted Submission(s): 5957 Problem Description lily的好朋友xiaoou333最近很空,他

【UVA】10739 - String to Palindrome(动态规划)

比较水的动态规划 dp[i][j] 将原串 i ~ j 之内的字符转化为回文字符所需要的最小操作次数 其中删除操作和添加操作本质上是一样的。 三个状态转移方程: dp[i][j] = min(dp[i][j] ,dp[i + 1][j]); dp[i][j] = min(dp[i][j] ,dp[i + 1][j - 1]); dp[i][j] = min(dp[i][j] ,dp[