Skip to content

Commit 58bfd2c

Browse files
authored
Update BinarySearchTree.java
1 parent 5fbad2a commit 58bfd2c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

BinarySearchTree.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
/**
2-
* Class BinarySearchTree.java
3-
* A class that represents an implementation of binary search tree in java
4-
*/
1+
//*******************************************************
2+
// BinarySearchTree.java
3+
// A class that represents an implementation of binary search tree in java
4+
// Author: liron mizrahi
5+
//*******************************************************
56
public class BinarySearchTree
67
{
78
private Node _root;
@@ -87,7 +88,6 @@ public int findFloor(int input)
8788
{
8889
return findFloor(_root, input);
8990
}// end of method findFloor
90-
9191
// private methods
9292
/**
9393
* private insert method insert a key to the BST

0 commit comments

Comments
 (0)