1 Star 0 Fork 0

丁旭升/cpp代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
一道编程题.txt 876 Bytes
一键复制 编辑 原始数据 按行查看 历史
丁旭升 提交于 2022-12-26 21:46 . 检查两个字符串是否几乎相等
https://leetcode.cn/problems/check-whether-two-strings-are-almost-equivalent/submissions/
class Solution {
public:
bool checkAlmostEquivalent(string word1, string word2) {
int* helper=new int[128]; //开空间,下标存小写英文字母
memset(helper, 0, sizeof(int)*128); //空间初始化为0,便于统计
//word1字符串负责+1
for(const char& ch:word1)
{
++helper[ch];
}
//word2字符串负责-1
for(const char& ch:word2)
{
--helper[ch];
}
//遍历;是否符合题意
bool result=true;
for(char i='a'; i<='z'; i++)
{
if(!(-3<=helper[i] && helper[i]<=3))
{
result=false;
break;
}
}
delete[] helper;
return result;
}
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/ding-xushengyun/code.git
[email protected]:ding-xushengyun/code.git
ding-xushengyun
code
cpp代码
master

搜索帮助