HJ10.字符个数统计

#include <string>
#include <iostream>

const int LEN = 128;

int cnt_ch(std::string s) {
    int ch[LEN];
    for (int i = 0; i < LEN; ++i) {
        ch[i] = 0;
    }
    for (auto& i : s) {
        ch[(int)i] = 1;
    }
    int cnt = 0;
    for (int i = 0; i < LEN; ++i) {
        if (ch[i] == 1) {
            ++cnt;
        }
    }
    return cnt;
}

int main() {
    std::string s;
    std::cin >> s;
    std::cout << cnt_ch(s);
    return 0;
}

解题思路:

难点1:题目没有对空间做限制,就看能否想到利用字典来存每个字符是否出现的信息了。