写点什么

作业

发布于: 2020 年 06 月 22 日
作业

public interface TreeInt {



public void addTree(TreeInt treeInt);



public void print();



}



public class TreeNode implements TreeInt {



private List<TreeInt> treeInts = new ArrayList<>();

public void addTree(TreeInt ){

this.treeInts.add(treeInt);

}



public void print(){

treeInts.parallelStream().forEach((x) -> x.print());

}

}



public class TreeSub implements TreeInt {



private String value;



private TreeInt treeInt;



public void addTree(TreeInt ){

this.treeInt = treeInt;

}



public void print(){

System.out.println(value);

treeInt.print();

}



}



用户头像

还未添加个人签名 2020.05.28 加入

还未添加个人简介

评论

发布
暂无评论
作业