回文串不使用reverse解法(Python) 摘要:解题思路:注意事项:参考代码:str=input()n=len(str)m=0for i in range (0,n): if str[i]==str[-1-i]: m=m+1 …… 题解列表 2022年02月14日 0 点赞 0 评论 123 浏览 评分:0.0
用栈可以轻松实现 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<stack>using namespace std;int main(){ string s1; cin >> s1…… 题解列表 2022年02月14日 0 点赞 0 评论 233 浏览 评分:9.9
回文串(Java代码,尺取法判断) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2022年04月20日 0 点赞 0 评论 156 浏览 评分:0.0
编写题解 1200: 回文串 一起来练习吧!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[260],str2[260]; int i,…… 题解列表 2022年05月11日 0 点赞 0 评论 362 浏览 评分:9.9
元始真解!!!编写题解 1200: 回文串 摘要:###反向扫描——尺取法 #####反向扫描:i、j 方向相反,i 从头到尾,j 从尾到头,在中间相会。也可以把反向扫描的 i、j 指针称为「左右指针」 ##### 注意:用尺取法的最关键之处在于…… 题解列表 2022年12月22日 0 点赞 0 评论 165 浏览 评分:9.9
回文串(基础解法) 摘要: 话不多说直接上代码 #include #include int main() { char a[1000]; char b[1000]; //用来复制…… 题解列表 2022年12月24日 0 点赞 0 评论 235 浏览 评分:9.0
1200: 回文串 摘要:```cpp #include #include using namespace std; int main() { char ch[255]; bool falg=tr…… 题解列表 2023年01月01日 0 点赞 0 评论 291 浏览 评分:9.9
C语言简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[256]; int i,j; gets(a); j=strle…… 题解列表 2023年01月02日 0 点赞 0 评论 224 浏览 评分:9.9
回文串-字符串处理(C++) 摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256; //判断字符串str是否是“回文串”bool judge(char str[…… 题解列表 2023年01月23日 0 点赞 0 评论 82 浏览 评分:0.0
1200: 回文串 摘要:参考代码:#include<stdio.h> #include<string.h> int main(){ int i,j=0; char a[260],b[260]; gets(a);…… 题解列表 2023年01月31日 0 点赞 0 评论 181 浏览 评分:9.9