回文串 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char…… 题解列表 2018年05月16日 0 点赞 0 评论 795 浏览 评分:0.0
回文串(Java) 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 1200: 回文串 import java.util.Scanner; public class t_1200 { …… 题解列表 2024年02月01日 0 点赞 0 评论 70 浏览 评分:0.0
回文串-字符串处理(C++) 摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256; //判断字符串str是否是“回文串”bool judge(char str[…… 题解列表 2023年01月23日 0 点赞 0 评论 81 浏览 评分:0.0
回文串不使用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>using namespace std;#include<string.h>int main() { char arr [255]; …… 题解列表 2024年12月06日 0 点赞 0 评论 141 浏览 评分:0.0
回文串 (C++代码) 摘要:解题思路: 可以尝试用c++来解决, 这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<alg…… 题解列表 2018年03月11日 0 点赞 0 评论 900 浏览 评分:0.0
简易回文串C解 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[300],b[300]; int i,j=0,is…… 题解列表 2024年02月20日 0 点赞 0 评论 83 浏览 评分:0.0
回文串——判断一个字符串是否为回文串 摘要:解题思路:利用列表步长为-1时,反向输出注意事项:参考代码:L = list(input())if L == L[::-1]: print('Y')else: print(…… 题解列表 2023年03月18日 0 点赞 0 评论 127 浏览 评分:0.0
回文串(Java代码,尺取法判断) 摘要:```java import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2022年04月20日 0 点赞 0 评论 156 浏览 评分:0.0
回文串-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <string.h> int main() { char a[255] ; int len…… 题解列表 2020年07月30日 0 点赞 0 评论 307 浏览 评分:0.0