⭐️ 题目描述
🌟 leetcode链接:判定是否互为字符重排
思路: 两个字符串的每个字母和数量都相等。那么 s2
一定可以排成 s1
字符串。文章来源:https://www.toymoban.com/news/detail-604955.html
代码:文章来源地址https://www.toymoban.com/news/detail-604955.html
bool CheckPermutation(char* s1, char* s2){
char hash1[26] = {0};
char hash2[26] = {0};
int i = 0;
while (s1[i]) {
hash1[s1[i] - 97]++;
i++;
}
i = 0;
while (s2[i]) {
hash2[s2[i] - 97]++;
i++;
}
for (i = 0; i < 26; i++) {
if (hash1[i] != hash2[i])
return false;
}
return true;
}
到了这里,关于leetcode 面试题 判定是否互为字符重排的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!