回文串 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char…… 题解列表 2018年05月16日 0 点赞 0 评论 958 浏览 评分:0.0
数组回文串 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string.h>int main() { char arr [255]; …… 题解列表 2024年12月06日 0 点赞 0 评论 343 浏览 评分:0.0
1200: 回文串C++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=10200;char s[N];int main(){ ci…… 题解列表 2023年12月15日 0 点赞 0 评论 208 浏览 评分:0.0
题解 1200: 回文串 摘要: #include using namespace std; char s[100000]; int main(){ cin>>s; int…… 题解列表 2023年12月15日 0 点赞 0 评论 167 浏览 评分:0.0
回文串-字符串处理(C++) 摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256; //判断字符串str是否是“回文串”bool judge(char str[…… 题解列表 2023年01月23日 0 点赞 0 评论 161 浏览 评分:0.0
1200: 回文串 摘要:回文串判断,直接 equal 函数往上拍。#include <bits/stdc++.h> using namespace std; int main(){ string s; …… 题解列表 2022年01月01日 0 点赞 0 评论 182 浏览 评分:0.0
回文串-题解 摘要: 参考代码:#include"bits/stdc++.h" using namespace std; char str[280]; bool check(char *s,int a,int b)…… 题解列表 2021年04月14日 0 点赞 0 评论 209 浏览 评分:0.0
回文串-题解(C++代码) 摘要:```cpp #include using namespace std; bool is_huiwen(string s){ bool b=true; int s_len=…… 题解列表 2020年03月20日 0 点赞 0 评论 643 浏览 评分:0.0
回文串 (C++代码) 摘要:解题思路: 可以尝试用c++来解决, 这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<alg…… 题解列表 2018年03月11日 0 点赞 0 评论 1028 浏览 评分:0.0
回文串 (C++代码)只做最简单的思路! 摘要:一开始着急写错了代码,写成了这样: ```cpp #include using namespace std; int main(){ char s[100]; gets(s); …… 题解列表 2020年02月18日 0 点赞 0 评论 537 浏览 评分:7.3