We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6797ca1 commit 80c9c17Copy full SHA for 80c9c17
Node.java
@@ -1,15 +1,16 @@
1
-/**
2
-* Class Node.java
3
-* A class that represents an implementation of a node for binary search tree in java
4
-*/
+//*******************************************************
+// Node.java
+// A class that represents an implementation of a node for binary search tree in java
+// Author: liron mizrahi
5
6
public class Node
7
{
8
int _key;
9
Node _left;
10
Node _right;
11
/**
12
* constructor of the class
- * @param int
13
+ * @param int data
14
* @return None
15
*/
16
public Node(int data)
0 commit comments