指针写法,简单易懂(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>char isHWC(char *a){ char *p = a; while(*a != '\0') { a++; …… 题解列表 2018年03月17日 0 点赞 0 评论 1121 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[1000]; gets(a); int i=strlen(a)…… 题解列表 2018年07月26日 2 点赞 0 评论 788 浏览 评分:0.0
要初始化数组,且长度与下标差一个,gets丢弃换行符,加入结尾符,但统计不包含结尾符 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> int main(){ char ch[255] = {0}; i…… 题解列表 2022年01月23日 0 点赞 0 评论 108 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 回文串_水到不能再水 { public static boolean isHw(String str) { for(int i=0;i…… 题解列表 2018年05月13日 0 点赞 0 评论 538 浏览 评分:0.0
回文串-字符串处理(C++) 摘要:参考代码:#include<cstdio>#include<cstring>const int maxn = 256; //判断字符串str是否是“回文串”bool judge(char str[…… 题解列表 2023年01月23日 0 点赞 0 评论 82 浏览 评分:0.0
1200: 回文串(详细简单暴力解) 摘要:#include #include int main() { char a[256]; fgets(a, sizeof(a), stdin); // 去除fge…… 题解列表 2024年11月13日 0 点赞 0 评论 134 浏览 评分: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"bits/stdc++.h" using namespace std; char str[280]; bool check(char *s,int a,int b)…… 题解列表 2021年04月14日 0 点赞 0 评论 133 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:两头往中间走,相同继续走,不同就跳出,最后比对i,j参考代码:#include<stdio.h>#include<string.h>int main(){ char s[260]; …… 题解列表 2018年05月13日 0 点赞 0 评论 581 浏览 评分:0.0