2073 安之 亲和串训练 摘要:解题思路:在s1字符串后连接一个s1,用find()函数进行搜索即可。注意事项:参考代码:#include <iostream>#include <string>using namespace std…… 题解列表 2024年11月22日 0 点赞 0 评论 33 浏览 评分:0.0
编写题解 2073: [STL训练]亲和串 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char arr[100] = { 0 }, ar[100] = { 0…… 题解列表 2024年03月12日 0 点赞 0 评论 96 浏览 评分:9.9
亲和串,简洁扼要,正解。(加入了循环队列思想哦) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set>#include<cstdio>#include<algorithm>using namespace std…… 题解列表 2023年05月17日 0 点赞 0 评论 102 浏览 评分:9.9
亲和串-手写函数解决(c语言) 摘要:```c #include #include char str1[100000]; char str2[100000]; void cycle_str(char*,int len); …… 题解列表 2023年04月25日 0 点赞 0 评论 189 浏览 评分:9.9
#C++2073——[STL训练]亲和串(string类find(),substr()) 摘要:解题思路: string类自带函数的运用注意事项: 循环移位(依次往后移动或往前移动都可),若往后,截取b的长度的子串,再接上,已完成所有移位,如样例AABCD,查找4个长度的字符串,截取前4个,接上…… 题解列表 2022年08月01日 0 点赞 0 评论 145 浏览 评分:0.0
编写题解 2073: [STL训练]亲和串 摘要:解题思路:注意事项:参考代码:while True: try: a=input().strip() b=input().strip() …… 题解列表 2022年03月16日 0 点赞 0 评论 107 浏览 评分:0.0
python简易解法 摘要:解题思路:注意事项:参考代码:while True: try: a=input() b=''.join(input().split()) c=''.join((a…… 题解列表 2022年03月05日 0 点赞 0 评论 117 浏览 评分:0.0
太简单了,我都不想解释 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string a,b; while(cin>>a…… 题解列表 2022年03月01日 0 点赞 0 评论 155 浏览 评分:4.0
[STL训练]亲和串(java版) 摘要:#### 解题思路: ##### 用String类中的indexOf()函数,查看字符串中是否包含另一字符串。本题中说是否能够循环移位得到亲和串,那么把字符串1加上自己本身得到新的字符串,这样再看字…… 题解列表 2022年01月22日 0 点赞 0 评论 308 浏览 评分:9.9
题解 2073: [STL训练]亲和串 水题~ (Java题解) 摘要:参考代码:import java.util.Scanner; public class Main{ public static void main(String[] args) { …… 题解列表 2021年10月13日 0 点赞 0 评论 229 浏览 评分:9.9