Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 638 Bytes

27. 二叉树的镜像.md

File metadata and controls

26 lines (20 loc) · 638 Bytes

27. 二叉树的镜像

牛客网

题目描述


解题思路

public TreeNode Mirror(TreeNode root) {
    if (root == null)
        return root;
    swap(root);
    Mirror(root.left);
    Mirror(root.right);
    return root;
}

private void swap(TreeNode root) {
    TreeNode t = root.left;
    root.left = root.right;
    root.right = t;
}