您的位置:首页 > 其它

题目:在二叉查找树中插入节点

2015-08-19 19:11 155 查看
给定一棵二叉查找树和一个新的树节点,将节点插入到树中。

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

您在真实的面试中是否遇到过这个题?

Yes

哪家公司问你的这个题?
Airbnb
Alibaba
Amazon Apple
Baidu Bloomberg
Cisco Dropbox
Ebay Facebook
Google Hulu
Intel Linkedin
Microsoft NetEase
Nvidia Oracle
Pinterest Snapchat
Tencent Twitter
Uber Xiaomi
Yahoo Yelp
Zenefits
感谢您的反馈

样例

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

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


挑战

能否不使用递归?

标签 Expand

LintCode 版权所有

二叉查找树

相关题目 Expand

3
(lintcode-copyright),(binary-search-tree)
困难 删除二叉查找树的节点 24 %

/**

* Definition of TreeNode:

* public class TreeNode {

* public int val;

* public TreeNode left, right;

* public TreeNode(int val) {

* this.val = val;

* this.left = this.right = null;

* }

* }

*/

public class Solution {

/**

* @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.

*/

public TreeNode insertNode(TreeNode root, TreeNode node) {

// write your code here

if(root==null) return node;

TreeNode x = root;

while (x != null) {

if (x.val > node.val) {

if (x.left == null) {

x.left = node;

break;

} else {

x = x.left;

}

} else {

if (x.right == null) {

x.right = node;

break;

} else {

x = x.right;

}

}

}

return root;

}

}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: