题解 2073: [STL训练]亲和串 水题~ (Java题解) 摘要:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] args) { …… 题解列表 2021年10月13日 0 点赞 0 评论 234 浏览 评分:9.9
亲和串,简洁扼要,正解。(加入了循环队列思想哦) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set>#include<cstdio>#include<algorithm>using namespace std…… 题解列表 2023年05月17日 0 点赞 0 评论 104 浏览 评分:9.9
亲和串-手写函数解决(c语言) 摘要:```c #include #include char str1[100000]; char str2[100000]; void cycle_str(char*,int len); …… 题解列表 2023年04月25日 0 点赞 0 评论 197 浏览 评分:9.9
[STL训练]亲和串(java版) 摘要:#### 解题思路: ##### 用String类中的indexOf()函数,查看字符串中是否包含另一字符串。本题中说是否能够循环移位得到亲和串,那么把字符串1加上自己本身得到新的字符串,这样再看字…… 题解列表 2022年01月22日 0 点赞 0 评论 314 浏览 评分:9.9
编写题解 2073: [STL训练]亲和串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char arr[100] = { 0 }, ar[100] = { 0…… 题解列表 2024年03月12日 0 点赞 0 评论 98 浏览 评分:9.9
[STL训练]亲和串 (C++代码)只做最好的思路! 摘要:这题我一开始竟然理解错了,我把它理解成了集合问题难怪错误50%,代码如下: ```cpp #include using namespace std; int main(){ int p…… 题解列表 2020年03月29日 0 点赞 0 评论 985 浏览 评分:9.9
[STL训练]亲和串-题解(C++代码) 摘要:我的是C++风格的,上面的题解是C风格的 ``` #include #include using namespace std; int main() { string s1,…… 题解列表 2019年10月04日 0 点赞 0 评论 735 浏览 评分:9.3
超短代码,你值得拥有!!!2073题-[STL训练]亲和串-题解(C++代码)觉得可以,请留下5星好评!!! 摘要: #include using namespace std; int main() { string s1,s2; while(cin>>s…… 题解列表 2019年08月18日 0 点赞 0 评论 801 浏览 评分:9.0
【优质题解】保证你没见过这种想法!太简洁了!看了都是五星! 2073题-[STL训练]亲和串-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { string a,b; while(cin>>a>>b) {…… 题解列表 2020年03月04日 0 点赞 2 评论 616 浏览 评分:8.7
题解 2073: [STL训练]亲和串 (C语言)用好str相关函数,事半功倍!轻松搞定 摘要: 大家可以趁着这道题复习一波C语言中关于str的相关函数。确实省了不少事参考代码:#include <stdio.h> #include <string.h> #include <stdli…… 题解列表 2021年03月25日 0 点赞 0 评论 313 浏览 评分:6.0