码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-01-28 00:34:34      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:problem   插入   tree   节点   his   www.   sea   ogg   ini   

题目:

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

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

 

样例

给出如下一棵二叉查找树,在插入节点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. 在二叉查找树中插入节点

标签:problem   插入   tree   节点   his   www.   sea   ogg   ini   

原文地址:https://www.cnblogs.com/zslhg903/p/8367785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!