溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java回文串檢測與字符串去重的結(jié)合

發(fā)布時(shí)間:2024-11-11 17:27:41 來源:億速云 閱讀:78 作者:小樊 欄目:編程語言

在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é)果。

向AI問一下細(xì)節(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)容。

AI