判断回文串

Posted 辰峰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断回文串相关的知识,希望对你有一定的参考价值。

代码如下:

package ClassDemo;
import java.util.Scanner;
public class CheckPalindrome {
public static void main (String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a string: ");
String s = input.nextLine();
int low = 0;
int high = s.length()-1;
boolean flag = true;
while (low < high) {
if(s.charAt(low) != s.charAt(high)) {
flag = false;
break;
}
low++;
high--;
}
if (flag) {
System.out.println(s + " 是回文串");
} else {
System.out.println(s + " 不是回文串");
}
}
}

以上是关于判断回文串的主要内容,如果未能解决你的问题,请参考以下文章

判断回文串

用递归判断字符串是不是为回文串(C语言) 用递归判断字符串是不是为回文串(C语言)

C语言题目,构造回文串。大神进。

LeetCode回溯算法#05分割回文串(复习双指针判断回文以及substr函数使用记录)

回文串问题

C语言:编写一个测试一个串是不是为回文的递归函数,是回文,返回1;不是,返回0。