- /**
- * 判断一个字符串是否是对称字符串,例如"abc"不是对称字符串,"aba"、"abba"、"aaa"、"mnanm"是对称字符串
- */
- public class Test4
- {
- public static void main(String[] args)
- {
- System.out.println(isDuichenStr("mnanm"));
- }
-
- public static boolean isDuichenStr(String s)
- {
- char[] chs=s.toCharArray();//转字符数组
- int min=0;
- int max=chs.length-1;
-
- while(max>=min)
- {
- if(!new Character(chs[min++]).equals(chs[max--]))//比较字符是否相同
- return false;
- }
- return true;
- }
- }
复制代码
感觉好麻烦 |
|