91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java中實現高效回文串判斷算法

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

在Java中,有多種方法可以實現高效的回文串判斷算法

方法一:雙指針法

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));
    }
}

以上三種方法都可以實現高效的回文串判斷。雙指針法是最常用的方法,因為它的時間復雜度為O(n),空間復雜度為O(1)。棧法和遞歸法也可以實現回文串判斷,但它們的空間復雜度較高,分別為O(n)和O(n)。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄢陵县| 平阴县| 永新县| 涪陵区| 宁强县| 北碚区| 樟树市| 吉木萨尔县| 林口县| 武义县| 汉阴县| 封丘县| 福贡县| 嘉定区| 黄冈市| 克拉玛依市| 临朐县| 右玉县| 苏州市| 无为县| 筠连县| 天祝| 公主岭市| 游戏| 肇庆市| 广南县| 黄龙县| 山丹县| 沙河市| 青铜峡市| 武邑县| 塘沽区| 元谋县| 屏山县| 湛江市| 武平县| 昌平区| 神农架林区| 宿迁市| 望谟县| 塔河县|