编写题解 1487: 蓝桥杯算法提高VIP-不同单词个数统计 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void max(char* p, char sz[110][15],int s){ i…… 题解列表 2024年03月30日 0 点赞 0 评论 90 浏览 评分:0.0
最简单的做法 摘要:解题思路:使用set容器注意事项:参考代码:#include <bits/stdc++.h> using namespace std; const int N=10100; stri…… 题解列表 2024年04月24日 0 点赞 0 评论 89 浏览 评分:0.0
不同单词个数统计(C语言):边读取单词边判断 摘要:解题思路:边读取单词边判断是否为新单词。若是则存储起来并且count+1,否则就忽略。注意事项:数组大小不妨定的大一些,以免不够用。循环中有中间变量时,记得更新变量的值。参考代码:#include<s…… 题解列表 2024年07月06日 0 点赞 0 评论 78 浏览 评分:9.9
STL句子拆分成单词 摘要:#include<bits/stdc++.h> using namespace std; set<string>s; int main() { string str,c; …… 题解列表 2024年07月30日 0 点赞 0 评论 62 浏览 评分:0.0