题解 | #字符个数统计#

字符个数统计

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

非必要不用真hash,数组实现:

#include <iostream>
using namespace std;
int main()
{
  string str;
  int strset[505] = {0};
  int cnt = 0;
  cin >> str;
    
  for(int i = 0; i < str.length(); i++) {
      if(strset[static_cast<int>(str[i])] == 0) {
         strset[static_cast<int>(str[i])] = 1;
          cnt++;
      }
  }
  cout << cnt << endl;
  return 0;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-24 20:55
阿里国际 Java工程师 2.7k*16.0
程序员猪皮:没有超过3k的,不太好选。春招再看看
点赞 评论 收藏
分享
服从性笔试吗,发这么多笔,现在还在发。
蟑螂恶霸zZ:傻 x 公司,发两次笔试,两次部门匹配挂,
投递金山WPS等公司10个岗位 >
点赞 评论 收藏
分享
10-25 12:05
已编辑
湖南科技大学 Java
若梦难了:我有你这简历,已经大厂乱杀了
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务