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

Posted zslhg903

tags:

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

题目:

给定一棵二叉查找树和一个新的树节点,将节点插入到树中。

你需要保证该树仍然是一棵二叉查找树

 

样例

给出如下一棵二叉查找树,在插入节点6之后这棵二叉查找树可以是这样的:

  2             2
 / \           / 1   4   -->   1   4
   /             / \ 
  3             3   6
挑战 

能否不使用递归?

 

/**
 * Definition of TreeNode:
 * class TreeNode {
 * public:
 *     int val;
 *     TreeNode *left, *right;
 *     TreeNode(int val) {
 *         this->val = val;
 *         this->left = this->right = NULL;
 *     }
 * }
 */


class Solution {
public:
    /*
     * @param root: The root of the binary search tree.
     * @param node: insert this node into the binary search tree
     * @return: The root of the new binary search tree.
     */
    TreeNode * insertNode(TreeNode * root, TreeNode * node) {
        // write your code here
        if(root==NULL)
        {
            root=node;
            return node;
        }
        TreeNode* p=root;
        while(p!=NULL)
        {
            if(node->val<p->val)
            {
                if(p->left==NULL)
                {
                    p->left=node;
                    return root;
                }
                else
                {
                    p=p->left;
                }
            }
            else
            {
                if(p->right==NULL)
                {
                    p->right=node;
                    return root;
                }
                else
                {
                    p=p->right;
                }
            }
        }
        return NULL;
        
    }
};

 

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

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

在二叉查找树中插入节点

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

使用递归 DFS 在二叉树中查找节点

在二叉树中插入新的节点

在二叉树中插入元素