Untitled
unknown
java
3 years ago
164 B
9
Indexable
package LAB8;
public class Node
{
int key;
int height;
Node left;
Node right;
Node(int d)
{
key = d;
height = 1;
}
}
Editor is loading...
package LAB8;
public class Node
{
int key;
int height;
Node left;
Node right;
Node(int d)
{
key = d;
height = 1;
}
}