回文串——判断一个字符串是否为回文串 摘要:解题思路:利用列表步长为-1时,反向输出注意事项:参考代码:L = list(input())if L == L[::-1]: print('Y')else: print(…… 题解列表 2023年03月18日 0 点赞 0 评论 127 浏览 评分:0.0
。。串串。。:回文串 (C语言代码) 摘要:#include<stdio.h> #include<string.h> int main() { int i,flag=1; char a[260]; gets(…… 题解列表 2019年03月08日 1 点赞 0 评论 613 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:两头往中间走,相同继续走,不同就跳出,最后比对i,j参考代码:#include<stdio.h>#include<string.h>int main(){ char s[260]; …… 题解列表 2018年05月13日 0 点赞 0 评论 581 浏览 评分:0.0
回文串(回文串特点解法) 摘要:解题思路:知道回文串首尾相同的特点就很好解决。注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char srr[…… 题解列表 2024年11月13日 0 点赞 0 评论 75 浏览 评分:0.0
指针写法,简单易懂(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char isHWC(char *a){ char *p = a; while(*a != '\0') { a++; …… 题解列表 2018年03月17日 0 点赞 0 评论 1121 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:主要是要考虑怎么接受字符串我用的是数组,用gets()函数来接受注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>…… 题解列表 2018年07月01日 0 点赞 0 评论 524 浏览 评分:0.0
回文串思路和参考代码(C语言) 摘要:解题思路:首先注意到字符串长度小于255,所以我们定义一个255个存储单元的数组即可,然后用scanf读入字符串,strlen函数得到字符个数,最后for循环判断。注意事项:参考代码:#include…… 题解列表 2021年10月23日 0 点赞 0 评论 189 浏览 评分:0.0
回文串-题解(C++代码) 摘要:```cpp #include using namespace std; bool is_huiwen(string s){ bool b=true; int s_len=…… 题解列表 2020年03月20日 0 点赞 0 评论 448 浏览 评分:0.0
1200: 回文串(C语言) 摘要: #include #include int main() { char str[255]; scanf("%s",str); int length=strlen…… 题解列表 2023年07月28日 0 点赞 0 评论 133 浏览 评分:0.0
题解 1200: 回文串 摘要: #include using namespace std; char s[100000]; int main(){ cin>>s; int…… 题解列表 2023年12月15日 0 点赞 0 评论 95 浏览 评分:0.0