You can use the below code, which is very simple:
public static boolean istPalindrom(char[] word){
int i1 = 0;
int i2 = word.length - 1;
while (i2 > i1) {
if (word[i1] != word[i2]) {
return false;
}
++i1;
--i2;
}
return true;
}
I hope this will help.
Want to become a Java Expert? join Java Training now!!
Want to know more about Java? Watch this video on Java Tutorial | Java Course :