您好,登錄后才能下訂單哦!
在Java中,有多種方法可以實現回文串檢查
public static boolean isPalindrome(String s) {
if (s == null || s.length() == 0) {
return true;
}
StringBuilder sb = new StringBuilder(s);
return sb.reverse().toString().equals(s);
}
public static boolean isPalindrome(String s) {
if (s == null || s.length() == 0) {
return true;
}
int left = 0;
int right = s.length() - 1;
while (left < right) {
if (s.charAt(left) != s.charAt(right)) {
return false;
}
left++;
right--;
}
return true;
}
public static boolean isPalindrome(String s) {
if (s == null || s.length() == 0) {
return true;
}
Stack<Character> stack = new Stack<>();
for (int i = 0; i < s.length(); i++) {
stack.push(s.charAt(i));
}
for (int i = 0; i < s.length(); i++) {
if (stack.pop() != s.charAt(i)) {
return false;
}
}
return true;
}
public static boolean isPalindrome(String s) {
if (s == null || s.length() == 0) {
return true;
}
if (s.charAt(0) != s.charAt(s.length() - 1)) {
return false;
}
return isPalindrome(s.substring(1, s.length() - 1));
}
這些方法都可以實現回文串檢查,你可以根據自己的需求和場景選擇合適的方法。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。