在二叉树中插入新的节点

Posted yingpu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在二叉树中插入新的节点相关的知识,希望对你有一定的参考价值。

TreeNode insertNode(TreeNode root,TreeNode node){
        if(root == node){
            return node;
        }
        TreeNode tmp = new TreeNode();
        tmp = root;
        TreeNode last = null;
        while(tmp!=null){
            last = tmp;
            if(tmp.val>node.val){
                tmp = tmp.left;
            }else{
                tmp = tmp.right;
            }
        }
        if(last!=null){
            if(last.val>node.val){
                last.left = node;
            }else{
                last.right = node;
            }
        }
        return root;
    }

 

以上是关于在二叉树中插入新的节点的主要内容,如果未能解决你的问题,请参考以下文章

在二叉查找树中插入节点

每日一题623. 在二叉树中增加一行

LintCode(85)在二叉查找树中插入节点

在二叉树中查找给定节点的祖先

在二叉树中找到一个节点的后继节点

LintCode 85. 在二叉查找树中插入节点