Problem
701. Insert into a Binary Search Tree
Java
Recursion
© Robert Sedgewick and Kevin Wayne
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
class Solution { public TreeNode insertIntoBST(TreeNode root, int val) { return recur(root, val); } private TreeNode recur(TreeNode node, int val) { if (node == null) { return new TreeNode(val); } if (val < node.val) { node.left = recur(node.left, val); } else if (val > node.val) { node.right = recur(node.right, val); } else { node.val = val; } return node; } }
|
Submission Detail
- 35 / 35 test cases passed.
- Runtime: 0 ms, faster than 100.00% of Java online submissions for Insert into a Binary Search Tree.
- Memory Usage: 39.1 MB, less than 98.22% of Java online submissions for Insert into a Binary Search Tree.