参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); while(scanner.hasNext()) { String s = scanner.next(); int n = s.length(); if(n < 2) { System.out.println(n); continue; } int start = 0, end = 0; int res = 1; for(int i = 0; i < n; i++) { int len1 = find(s, i, i); int len2 = find(s, i, i + 1); res = Math.max(res, Math.max(len1, len2)); } System.out.println(res); } } public static int find(String s, int i, int j) { while(i >= 0 && j < s.length() && s.charAt(i) == s.charAt(j)) { i--; j++; } return j - i - 1; } }
0.0分
4 人评分
【亲和数】 (C语言代码)浏览:530 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:594 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:331 |
分糖果 (C语言代码)浏览:980 |
Pascal三角 (C语言代码)浏览:707 |
字符串比较 (C语言代码)浏览:770 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:1390 |
简单的a+b (C语言代码)浏览:667 |
Manchester-汽水瓶问题浏览:4234 |