(TreeNode right)
| 23 | } |
| 24 | |
| 25 | public void setRightChild(TreeNode right) { |
| 26 | this.right = right; |
| 27 | if (right != null) { |
| 28 | right.parent = this; |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | public void insertInOrder(int d) { |
| 33 | if (d <= data) { |
no outgoing calls
no test coverage detected