题解 | 字符个数统计

字符个数统计

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

#include <stdio.h>

int main() {
    char str[501] = {0};
    char hashmap[128] = {0};
    int cnt = 0;
    int len = 0; 
    scanf("%[^\n]", str);
    len = strlen(str);

    for (int i = 0; i < len; i++) {
        hashmap[str[i]] = 1;
    }

    for (int j = 0; j < 128; j++) {
        cnt += hashmap[j];
    }
    printf("%d\r\n", cnt);
    return 0;
}

全部评论

相关推荐

03-27 01:58
已编辑
西北工业大学 Java
在平静中度过当下:如果这个bg也简历挂的话可能他们现在不缺人了吧,我也是这两天投的,阿里和快手投的岗都是简历秒挂
点赞 评论 收藏
分享
饼子吃到撑:学院本是这样的,找工作拼运气,你技术再好人家筛选学历照样沉入海底,海投就行了
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务