中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java treenode能實現節點旋轉嗎

小樊
81
2024-11-28 09:48:41
欄目: 編程語言

Java中的TreeNode類通常用于表示二叉樹的節點。要實現節點旋轉,你需要編寫一些額外的代碼。以下是一個簡單的示例,展示了如何在Java中實現二叉樹的左旋和右旋操作。

首先,定義一個TreeNode類:

public class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;

    TreeNode(int x) {
        val = x;
    }
}

接下來,實現左旋和右旋操作:

public class BinaryTreeRotation {

    // 左旋操作
    public static TreeNode leftRotate(TreeNode x) {
        TreeNode y = x.right;
        x.right = y.left;
        y.left = x;

        return y;
    }

    // 右旋操作
    public static TreeNode rightRotate(TreeNode y) {
        TreeNode x = y.left;
        y.left = x.right;
        x.right = y;

        return x;
    }

    public static void main(String[] args) {
        TreeNode root = new TreeNode(1);
        root.left = new TreeNode(2);
        root.right = new TreeNode(3);
        root.left.left = new TreeNode(4);
        root.left.right = new TreeNode(5);

        System.out.println("Original tree:");
        printTree(root);

        root = leftRotate(root);
        System.out.println("\nTree after left rotation:");
        printTree(root);

        root = rightRotate(root.left);
        System.out.println("\nTree after right rotation:");
        printTree(root);
    }

    // 打印樹結構
    public static void printTree(TreeNode root) {
        if (root == null) {
            return;
        }

        System.out.print(root.val + " ");
        printTree(root.left);
        printTree(root.right);
    }
}

在這個示例中,我們定義了兩個方法leftRotaterightRotate,分別用于實現左旋和右旋操作。在main方法中,我們創建了一個簡單的二叉樹,并對其進行了左旋和右旋操作。最后,我們使用printTree方法打印出樹的節點值,以便觀察旋轉操作的效果。

0
台北市| 调兵山市| 石泉县| 清流县| 崇仁县| 西丰县| 商城县| 乡宁县| 荃湾区| 休宁县| 裕民县| 洪江市| 伊吾县| 安陆市| 清水县| 安平县| 许昌县| 崇州市| 乌恰县| 台安县| 鹰潭市| 横峰县| 周宁县| 武川县| 东城区| 丹东市| 襄垣县| 科技| 天峻县| 化州市| 望谟县| 隆回县| 江永县| 九台市| 紫金县| 东辽县| 大姚县| 星子县| 通海县| 家居| 应城市|