回文串 (C语言代码) 摘要:解题思路:注意事项:注意空格参考代码:#include<stdio.h>#include<string.h>int main(){ char str1[260],str2[260]; in…… 题解列表 2017年09月04日 4 点赞 3 评论 3225 浏览 评分:9.9
回文串 (Java代码) 摘要:解题思路:首先将输入的字符串a利用StringBuffer逆序处理得到字符串b然后利用循环对字符串进行访问即可注意事项:参考代码:import java.util.Scanner; public…… 题解列表 2018年01月09日 9 点赞 3 评论 551 浏览 评分:0.0
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.*;public class 回文 { public static char huiwen(String a) { int n=0; …… 题解列表 2018年01月09日 0 点赞 0 评论 539 浏览 评分:6.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>#define LEN 224void judge(char *);int main(void){ char ch[LE…… 题解列表 2018年03月13日 0 点赞 0 评论 1252 浏览 评分: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语言代码)这类题目的通用解法,易理解 摘要:参考代码如下:#include <stdio.h> #include <string.h> #include <stdlib.h> int main(void) { char str[…… 题解列表 2018年04月16日 0 点赞 0 评论 930 浏览 评分:6.0
回文串 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 回文串_水到不能再水 { public static boolean isHw(String str) { for(int i=0;i…… 题解列表 2018年05月13日 0 点赞 0 评论 538 浏览 评分:0.0
回文串 (C语言代码) 摘要:解题思路:两头往中间走,相同继续走,不同就跳出,最后比对i,j参考代码:#include<stdio.h>#include<string.h>int main(){ char s[260]; …… 题解列表 2018年05月13日 0 点赞 0 评论 581 浏览 评分:0.0