首页 > 编程语言 > 详细

【数据结构】算法 Invert Binary Tree 翻转二叉树

时间:2021-04-21 15:50:17      阅读:20      评论:0      收藏:0      [点我收藏+]

Invert Binary Tree 翻转二叉树

技术分享图片

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
    public TreeNode invertTree(TreeNode root) {
        if(root == null){
            return null;
        }
        TreeNode node = root.right;
        root.right = root.left;
        root.left = node;
        if(root.right!=null){
            invertTree(root.right);
        }
        if(root.left!=null){
            invertTree(root.left);
        }
        return root;
    }
}

Tag

tree recusion

【数据结构】算法 Invert Binary Tree 翻转二叉树

原文:https://www.cnblogs.com/dreamtaker/p/14666549.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!