美文网首页
二叉树左右节点反转

二叉树左右节点反转

作者: 黄靠谱 | 来源:发表于2019-03-01 08:41 被阅读0次

    递归反转,时间复杂度、空间复杂度都是N

    public NodeTree invert(Node root){
        if(root ==null) return null;
        if(root.left!=null{
          invert(root.left);
          }
       if(root.right!=null{
          invert(root.right);
          }
       Node cacheNode=root.left;
       root.left=root.right;
       root.right=cacheNode;
       return root;
    }
    

    相关文章

      网友评论

          本文标题:二叉树左右节点反转

          本文链接:https://www.haomeiwen.com/subject/arjruqtx.html