题解 | #字符个数统计# 出现“不重复”-采用集合完成逻辑
字符个数统计
https://www.nowcoder.com/practice/eb94f6a5b2ba49c6ac72d40b5ce95f50
#include <iostream> #include <set> using namespace std; int main() { string s; cin >> s; int n = s.size(); set<char> se; int res = 0; for(int i=0; i<n; i++){ if(se.count(s[i]) == 0 && s[i] != '\n'){ res++; se.insert(s[i]); } } cout << res <<endl; } // 64 位输出请用 printf("%lld")