16 lines
203 B
Java
16 lines
203 B
Java
|
package com.iluwatar;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Interface for binary tree node.
|
||
|
*
|
||
|
*/
|
||
|
public interface Node {
|
||
|
|
||
|
String getName();
|
||
|
int getTreeSize();
|
||
|
Node getLeft();
|
||
|
Node getRight();
|
||
|
void walk();
|
||
|
}
|