We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fbad2a commit 58bfd2cCopy full SHA for 58bfd2c
BinarySearchTree.java
@@ -1,7 +1,8 @@
1
-/**
2
-* Class BinarySearchTree.java
3
-* A class that represents an implementation of binary search tree in java
4
-*/
+//*******************************************************
+// BinarySearchTree.java
+// A class that represents an implementation of binary search tree in java
+// Author: liron mizrahi
5
6
public class BinarySearchTree
7
{
8
private Node _root;
@@ -87,7 +88,6 @@ public int findFloor(int input)
87
88
89
return findFloor(_root, input);
90
}// end of method findFloor
-
91
// private methods
92
/**
93
* private insert method insert a key to the BST
0 commit comments