判断给定字符序列是否是回文
Posted 算法与编程之美
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断给定字符序列是否是回文相关的知识,希望对你有一定的参考价值。
1 问题
2 方法
public class TestFile public static void main(String[] args) String string = "123321"; System.out.println(IsHuiwen(string)); public static boolean IsHuiwen(String string) char[] temp = string.toCharArray(); for(int i = 0;i < temp.length; i++) if(temp[i] != temp[temp.length-1-i]) return false; return true; |
3 结语
针对如何判断回文数问题,提出使用for循环判断回文数的方法,通过实验,证明该方法是有效的,未来还可以讨论其他判断回文数的更多方法。
以上是关于判断给定字符序列是否是回文的主要内容,如果未能解决你的问题,请参考以下文章