File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
03_binarytree÷conquer/_01_InsertNodeInABinarySearchTree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 10
10
***************************************************************************
11
11
* {@link http://www.lintcode.com/en/problem/insert-node-in-a-binary-search-tree/# }
12
12
*/
13
- package InsertNodeInABinarySearchTree ;
13
+ package _01_InsertNodeInABinarySearchTree ;
14
14
15
15
import com .leetcode .TreeNode ;
16
16
17
- /** see test {@link InsertNodeInABinarySearchTree .SolutionTest } */
17
+ /** see test {@link _01_InsertNodeInABinarySearchTree .SolutionTest } */
18
18
public class Solution {
19
19
20
20
public TreeNode insertNode (TreeNode root , TreeNode node ) {
Original file line number Diff line number Diff line change 1
- package InsertNodeInABinarySearchTree ;
1
+ package _01_InsertNodeInABinarySearchTree ;
2
2
3
3
import static org .junit .Assert .*;
4
4
12
12
13
13
public class SolutionTest {
14
14
15
- /** Test method for {@link InsertNodeInABinarySearchTree .Solution } */
15
+ /** Test method for {@link _01_InsertNodeInABinarySearchTree .Solution } */
16
16
Solution solution ;
17
17
18
18
@ Rule
You can’t perform that action at this time.
0 commit comments