Skip to content

Commit 80c9c17

Browse files
authored
Update Node.java
1 parent 6797ca1 commit 80c9c17

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Node.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -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-
*/
1+
//*******************************************************
2+
// Node.java
3+
// A class that represents an implementation of a node for binary search tree in java
4+
// Author: liron mizrahi
5+
//*******************************************************
56
public class Node
67
{
78
int _key;
89
Node _left;
910
Node _right;
1011
/**
1112
* constructor of the class
12-
* @param int
13+
* @param int data
1314
* @return None
1415
*/
1516
public Node(int data)

0 commit comments

Comments
 (0)