-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathInsertNodeInABinarySearchTree.java
69 lines (63 loc) · 1.82 KB
/
InsertNodeInABinarySearchTree.java
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Given a binary search tree and a new tree node, insert the node into the
* tree. You should keep the tree still be a valid binary search tree.
Have you met this question in a real interview? Yes
Example
Given binary search tree as follow, after Insert node 6, the tree should be:
2 2
/ \ / \
1 4 --> 1 4
/ / \
3 3 6
Challenge
Can you do it without recursion?
*/
/**
* 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 InsertNodeInABinarySearchTree {
// iteration
public TreeNode insertNode(TreeNode root, TreeNode node) {
if (root == null)
return node;
TreeNode cur = root;
while (cur != null) {
if (cur.val < node.val) {
if (cur.right != null) {
cur = cur.right;
} else {
cur.right = node;
break;
}
} else {
if (cur.left != null) {
cur = cur.left;
} else {
cur.left = node;
break;
}
}
}
return root;
}
/*******************************************************************/
// recursion
public TreeNode insertNode(TreeNode root, TreeNode node) {
if (root == null)
return node;
if (root.val < node.val) {
root.right = insertNode(root.right, node);
} else {
root.left = insertNode(root.left, node);
}
return root;
}
}