简单的字符串-题解(C语言描述/c++代码) 摘要: 解题思路:利用字符串和哈希数组解题,先输入n的值,再接收n个字符串str,在字符串str中对每个个字符出现的数量利用哈希数组进行计数,再根据哈希数组中存储的数量进行计数. 注意事项: …… 题解列表 2020年02月19日 0 点赞 0 评论 424 浏览 评分:0.0
简单的字符串-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include void f(char c[]){ …… 题解列表 2020年02月16日 0 点赞 0 评论 514 浏览 评分:0.0
简单的字符串-题解(C语言代码) 摘要: #include #include int main(){ int x,y,z=0,d; scanf("%d",&x); while(z…… 题解列表 2019年08月11日 0 点赞 0 评论 725 浏览 评分:0.0
简单的字符串-题解(C++代码)(注释清晰) 摘要:#include #include #include const int maxn = 26; using namespace std; int main(void) { string …… 题解列表 2019年07月16日 0 点赞 0 评论 841 浏览 评分:0.0