牛客网–华为机试在线训练10:字符个数统计
题目描述
编写一个函数,计算字符串中含有的不同字符的个数。字符在ACSII码范围内(0~127)。不在范围内的不作统计。
输入描述:
输入N个字符,字符在ACSII码范围内。
输出描述:
输出范围在(0~127)字符的个数。
示例1
输入
abc
输出
3
我的代码
#include<iostream>
#include<string>
#include<set>
using namespace std;
int main(){
string str;
set<char> res_temp;//下面要对字符插入,故这里只能是char型的set,不能是string型的char
int res = 0;
while(cin >> str){
if(str.size() == 0)
cout << 0 << endl;
for (int i = 0; i < str.size(); i++){
if(str[i] >= 0 && str[i] <= 127)
res_temp.insert(str[i]);
}
cout << res_temp.size() << endl;
}
return 0;
}