<%@ page contentType="text/html; charset=gb2312"%> 我用composite模式写的一个二叉树的例子
网站公告:   ◆北天JAVA技术网热情为java爱好者服务,本网内容包括JAVA(JSP、servlet、EJB、webservice、j2ee、javabean、应用服务器、JavaScript),数据库(MYSQL、SQL Server、Sybase、Oracle、DB2、数据库综合知识),设计研究(设计模式、Struts、Spring、Hibernate、设计框架、设计综合知识),WEB2.0新技术(主要介绍AJAX),以及各种技术的入门、实例、例子等等,欢迎各位多来坐坐!◆  诚邀各位JAVA爱好者加盟!◆  本网站内容丰富,更新快,保证每周20篇以上!  
加入收藏
设为首页
联系站长
承接项目
  相关资源:网站首页 | 免费培训学院 | 技术论坛 | JAVA聊天室 | 作家专栏 | 开发工具 | 认证考试 | 会员俱乐部
  JAVA技术初学者园地 | jsp与servlet | javascript | Java源代码 | EJB | web service | 应用服务器 | JAVA综合知识
  设计研究设计模式 | 设计框架 | Struts | Spring | Hibernate | 开源项目 | 面向对象设计 | 设计综合知识
  数 据 库MYSQL | SQL Server | Sybase | Oracle | DB2 | Informix | Access | 数据库综合知识
  其他资源:AJAX新技术 | 网站开发 | ERP软件 | OA办公软件 | 商业智能BI | 开发综合知识 | 承接项目 | 项目试用

 
 
我用composite模式写的一个二叉树的例子
     发布者: 发布时间:2006-09-04
我用composite模式写的一个二叉树的例子
1,Component 是抽象组件
Tree 和Leaf 继承Component

private String name; //树或叶子的名称
addChild(Component leftChild,Component rightChild);
//给一个树上加上一个左孩子,一个右孩子
getName(){return name;}
getTreeInfo(){} //得到树或叶子的详细信息
getLength(); //得到树的高度

2,Tree 二叉树,一个左孩子,一个右孩子

3,Leaf 是叶子节点
4,Test 是测试节点

/** Component.java **************/
package binarytree;
public abstract class Component {
private String name;
public abstract Component addChild(Component leftChild,Component rightChild);
public String getName(){return name;}
public void getTreeInfo(){}
public abstract int getLength();
}

/** Leaf.java **************/
package binarytree;
public class Leaf extends Component{
private String name;
private Component leaf=null;
public Leaf(String name) {
this.name=name;
}
public Component addChild(Component leftChild,Component rightChild){
return this;
}
public String getName(){
return name;
}
public int getLength() {
return 1;
}
public static void main(String[] args) {
}
}

/** Tree.java **************/
package binarytree;
public class Tree extends Component {
private String name;
private Component leftChild;
private Component rightChild;
public Tree(String name,Component leftChild,Component rightChild) {
this.name=name;
this.leftChild=leftChild;
this.rightChild=rightChild;
}
public Tree(String name) {
this.name=name;
this.leftChild=null;
this.rightChild=null;
}
public Component addChild(Component leftChild,Component rightChild){
this.leftChild=leftChild;
this.rightChild=rightChild;
return this;
}
public String getName(){
return name;
}
public void getTreeInfo()
//得到树或叶子的详细信息
//先打印自己的名字,再遍例左孩子,再遍例右孩子
//如果左孩子或右孩子是树,递归调用
{
System.out.println(" this trees name is "+getName());
if(this.leftChild instanceof Leaf)
{
System.out.println(getName()+"s left child is "+this.leftChild.getName()+",it is a Leaf");
}
if(this.leftChild instanceof Tree){
System.out.println(getName()+"s left child is "+this.leftChild.getName()+",it is a Tree");
this.leftChild.getTreeInfo();
}
if(this.leftChild==null)
{
System.out.println(getName()+"s left child is a null");
}
if(this.rightChild instanceof Leaf)
{
System.out.println(getName()+"s right child is "+this.rightChild.getName()+",it is a Leaf");
}
if(this.rightChild instanceof Tree) {
System.out.println(getName()+"s right child is "+this.rightChild.getName()+",it is a Tree");
this.rightChild.getTreeInfo();
}
if(this.rightChild==null)
{
System.out.println(getName()+"s right child is a null");
}
//System.out.println(getName()+"s 高度 是 "+getLength());
}
public int getLength() {
//比较左孩子或右孩子的高度,谁大,+1 返回
// 空孩子的处理
if(this.leftChild==null) {
if(this.rightChild==null)
return 1;
else
return this.rightChild.getLength()+1;
}
else {
if(this.rightChild==null) {
return this.leftChild.getLength()+1;
}
else {
if((this.leftChild.getLength())>=(this.rightChild.getLength()))
return this.leftChild.getLength()+1;
else
return this.rightChild.getLength()+1;
}
}
}
public static void main(String[] args) {
}
}

/** Test.java 测试类 **************/
package binarytree;
public class Test {

public Test() {
}
public static void main(String[] args) {
Component tree=new Tree("luopeng");
Component leaf_child=new Leaf("luopeng1");
Component right_child=new Leaf("luopeng2");
tree=tree.addChild(leaf_child,right_child);
//tree=tree.addRightChild(right_child);
tree.getTreeInfo();
Component tree1=new Tree("luopeng2");
tree1.addChild(tree,leaf_child);
tree1.getTreeInfo();
Component tree2=new Tree("luopeng3");
tree2.addChild(tree,null);
tree2.getTreeInfo();
Component tree4=new Tree("luopeng4");
tree4.addChild(null,tree);
tree4.getTreeInfo();
System.out.println(tree4.getName()+"的高度是 "+tree4.getLength());
}

(转载文章请保留出处:北天JAVA技术网(www.java114.com))
 
更多精彩文章:
JBoss中EJB的开发
J2EE应用中常见的反模式
Resin服务器平台介绍
使用Hibernate的一个完整例子
浅谈心得体会 如何成为一个优秀的jsp程序员
介绍一种XML数据转换工具
 
最近评论:
        
冰封的往事!
wow power leveling,wow gold,WoW Gold,wow gold max(1549)
        
飞舞的传奇!
传世私服,传世私服.传奇世界私服传奇世界私服,传世私服传世私服, 传奇世界私服传奇世界私服.传奇私服传奇私服. max(6503)
        
标 题:   
内 容:   
 
                                  
 
免责声明:该文章由网友发表,如果对您造成侵权,请联系站长

首页 - 承接项目 - 网站地图 - 联系我们 -
版权所有北天JAVA技术工作室 ICP证号:粤ICP备06079815号