溫馨提示×

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

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

Java中實(shí)現(xiàn)高效回文串判斷算法

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

在Java中,有多種方法可以實(shí)現(xiàn)高效的回文串判斷算法

方法一:雙指針法

public class Palindrome {
    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 void main(String[] args) {
        String s = "racecar";
        System.out.println("Is palindrome: " + isPalindrome(s));
    }
}

方法二:棧法

import java.util.Stack;

public class Palindrome {
    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));
        }

        int left = 0;
        int right = s.length() - 1;

        while (left < right) {
            if (stack.pop() != s.charAt(right)) {
                return false;
            }
            left++;
            right--;
        }

        return true;
    }

    public static void main(String[] args) {
        String s = "racecar";
        System.out.println("Is palindrome: " + isPalindrome(s));
    }
}

方法三:遞歸法

public class Palindrome {
    public static boolean isPalindrome(String s) {
        if (s == null || s.length() == 0) {
            return true;
        }

        return isPalindromeHelper(s, 0, s.length() - 1);
    }

    private static boolean isPalindromeHelper(String s, int left, int right) {
        if (left >= right) {
            return true;
        }

        if (s.charAt(left) != s.charAt(right)) {
            return false;
        }

        return isPalindromeHelper(s, left + 1, right - 1);
    }

    public static void main(String[] args) {
        String s = "racecar";
        System.out.println("Is palindrome: " + isPalindrome(s));
    }
}

以上三種方法都可以實(shí)現(xiàn)高效的回文串判斷。雙指針法是最常用的方法,因?yàn)樗臅r(shí)間復(fù)雜度為O(n),空間復(fù)雜度為O(1)。棧法和遞歸法也可以實(shí)現(xiàn)回文串判斷,但它們的空間復(fù)雜度較高,分別為O(n)和O(n)。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI