在二叉树中插入新的节点
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; }
以上是关于在二叉树中插入新的节点的主要内容,如果未能解决你的问题,请参考以下文章