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

时间:2015-10-25 06:15:43

标签: c++ string

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

1 个答案:

答案 0 :(得分:2)

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

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;