题解 1200: 回文串

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

回文串-题解

摘要: 参考代码:#include"bits/stdc++.h" using namespace std; char str[280]; bool check(char *s,int a,int b)……

回文串-题解(C++代码)

摘要:```cpp 开头结尾一起判断 #include #include using namespace std; int main(int agrc, char const *arg……

Kanna-回文串--C++

摘要:写的稍微复杂了点,但解题思路是: 1) 先利用length函数得到字符串的长度 2) 然后循环判断是否前后相等,如果一旦不相等了就break退出 #include #inc……

回文串 (C++代码)简洁的方法

摘要:解题思路:    无需多于变量,只需要一个字符串就够了。参考代码:#include<bits/stdc++.h> using namespace std; int main(){ string……

回文串 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> using namespace std; const int M=255+5; char……

回文串 (C++代码)

摘要:解题思路:   可以尝试用c++来解决, 这样子更方便注意事项:参考代码:#include<stdio.h>#include<string.h>#include<string>#include<alg……