You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package leo.class09_13;
|
|
|
|
/**
|
|
* @author Leo
|
|
* @ClassName Node
|
|
* @DATE 2020/12/11 3:31 下午
|
|
* @Description 二叉树
|
|
*/
|
|
public class Node {
|
|
int value;
|
|
Node left;
|
|
Node right;
|
|
protected Node(int v){
|
|
this.value = v;
|
|
}
|
|
}
|