您好,登錄后才能下訂單哦!
在Java中,我們可以使用雙指針方法來檢測回文串,同時(shí)使用HashSet來去除字符串中的重復(fù)字符。以下是一個(gè)示例代碼:
import java.util.HashSet;
public class PalindromeAndRemoveDuplicates {
public static void main(String[] args) {
String input = "abccbaabc";
String result = isPalindrome(input) && removeDuplicates(input);
System.out.println("Is palindrome and remove duplicates: " + result);
}
// 檢測回文串
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;
}
// 去除字符串中的重復(fù)字符
public static String removeDuplicates(String s) {
if (s == null || s.length() == 0) {
return s;
}
HashSet<Character> set = new HashSet<>();
StringBuilder sb = new StringBuilder();
for (char c : s.toCharArray()) {
if (!set.contains(c)) {
set.add(c);
sb.append(c);
}
}
return sb.toString();
}
}
在這個(gè)示例中,我們首先定義了一個(gè)isPalindrome
方法來檢測輸入字符串是否為回文串。然后,我們定義了一個(gè)removeDuplicates
方法來去除字符串中的重復(fù)字符。最后,我們?cè)?code>main方法中將這兩個(gè)方法結(jié)合起來,得到一個(gè)既滿足回文串條件又去除重復(fù)字符的結(jié)果。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。