Leetcode学习笔记:#701. Insert into a Binary Search Tree

Leetcode学习笔记:#701. Insert into a Binary Search Tree

Given the root node of a binary search tree (BST) and a value to be inserted into the tree, insert the value into the BST. Return the root node of the BST after the insertion. It is guaranteed that the new value does not exist in the original BST.

Note that there may exist multiple valid ways for the insertion, as long as the tree remains a BST after insertion. You can return any of them.

实现:

public TreeNode insertIntoBST(TreeNode root, int val){
	if(root == null) return new TreeNode(val);
	TreeNode cur = root;
    while(true){
		if(cur.val <= val){
			if(cur.right != null) cur = cur.right;
			else{
				cur.right = new TreeNode(val);
				break;
			}
		}else{
			if(cur.left != null) cur = cur.left;
			else{
				cur.left = new TreeNode(val);
				break;
			}
		}
	}
		return root;
}
上一篇:自定义 mapper


下一篇:LeetCode 653. 两数之和 IV - 输入 BST(Two Sum IV - Input is a BST)