gpt4 book ai didi

c++ - C++ 如何检查一个字符串中是否存在多个字母

转载 作者:行者123 更新时间:2023-11-30 03:48:10 24 4
gpt4 key购买 nike

例如在字符串“RADIOACTIVE”中,我如何检查所有“R”、“E”、“O”和“A”是否都出现在字符串中。我应该如何编写代码

最佳答案

找出主字符串中可用的字母。然后检查您想要的每个字母是否可用。

string S = "RADIOACTIVE";
bool avail[26]={false};
for(int i=0; i<S.length(); i++)
avail[S[i]] = true;


string s = "REOA";
bool All = true;

for(int i=0; i<s.length(); i++)
if(!avail[s[i]])
{
All = false;
break;
}


if(All)
cout << "All letters found" << endl;
else
cout << "All letters not found" << endl;

关于c++ - C++ 如何检查一个字符串中是否存在多个字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33326797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com