[编程题]字符个数统计

字符个数统计

http://www.nowcoder.com/questionTerminal/eb94f6a5b2ba49c6ac72d40b5ce95f50

/位存储 c++ bitset, 省空间/

#include <iostream>
#include <bitset>

using namespace std;

int main(int argc, char* argv[])
{
    char c;
    int count;
    bitset<128> setTest(0);
    while (c = getchar())
    {
        if (c == '\n')
        {
            break;
        }
        setTest.set(c, 1);
    }
    cout << setTest.count() << endl;
    return 0;
}
全部评论

相关推荐

挣K存W养DOG:他真的很中意你,为什么不回他
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务