统计回文oj
Posted ohana!
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了统计回文oj相关的知识,希望对你有一定的参考价值。
目录
一,题目内容
二,解题分析
- 主要在于如何将一个字符插入进字符串,在StringBuilder中有一个insert方法,可以在0到小于等于字符串长度的任意位置插入
- 判断是否是回文,就可以用最好理解的双向遍历完成
三,解题代码
import java.util.*;
public class Main
public static boolean reverse(StringBuilder str)
int left = 0;
int right = str.length() - 1;
while(left < right)
if(str.charAt(left) != str.charAt(right))
return false;
left++;
right--;
return true;
public static void main(String[] args)
Scanner sc = new Scanner(System.in);
String s1 = sc.nextLine();
String s2 = sc.nextLine();
int count = 0;
for(int i = 0;i <= s1.length();i++)
StringBuilder sb = new StringBuilder(s1);
sb.insert(i,s2);
if(reverse(sb))
count++;
System.out.println(count);
以上是关于统计回文oj的主要内容,如果未能解决你的问题,请参考以下文章