c++实现:给定一个只包含小写字母的字符串,请你找到第一个仅出现一次的字符。如果没有,输出no
时间: 2023-08-14 14:52:50 浏览: 145
字符串中第一个只出现一次的字符.md
下面是使用C++编写的程序,可以找到给定字符串中第一个仅出现一次的字符:
```cpp
#include <iostream>
#include <unordered_map>
using namespace std;
char findFirstUniqueChar(string s) {
unordered_map<char, int> charCount;
// 统计每个字符出现的次数
for (char c : s) {
charCount[c]++;
}
// 找到第一个仅出现一次的字符
for (char c : s) {
if (charCount[c] == 1) {
return c;
}
}
return ' ';
}
int main() {
string s;
cout << "请输入一个只包含小写字母的字符串:";
cin >> s;
char firstUniqueChar = findFirstUniqueChar(s);
if (firstUniqueChar != ' ') {
cout << "第一个仅出现一次的字符是:" << firstUniqueChar << endl;
} else {
cout << "no" << endl;
}
return 0;
}
```
你可以将以上代码保存为一个.cpp文件,然后使用C++编译器编译并运行该程序。程序会提示你输入一个只包含小写字母的字符串,然后输出第一个仅出现一次的字符,如果没有则输出"no"。
阅读全文