使用循环判断数组元素是否对称
Posted liqiliang1437
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用循环判断数组元素是否对称相关的知识,希望对你有一定的参考价值。
@Test
public void b() {
int[] arr = new int[]{1, 2, 3, 4, 5, 4, 3, 2, 1};
int start = 0;
int end = arr.length - 1;
while (start <= end) {
if (arr[start] != arr[end]) {
System.out.println("此数组不对称");
System.exit(0);
} else {
start++;
end--;
}
}
System.out.println("此数组是对称的!!");
}
判断字符串元素是否对称
@Test
public void a() {
//将字符串反转,反转之后的字符串和原本的比较
String str = "ABCCBA";
StringBuilder strRev = new StringBuilder(str).reverse();
if (str.contentEquals(strRev)) {
System.out.println("该字符串是对称的!");
} else {
System.out.println("该字符串不是对称的!");
}
}
以上是关于使用循环判断数组元素是否对称的主要内容,如果未能解决你的问题,请参考以下文章