简单写写二叉树的添加功能,中序遍历,最小值和查询功能

直接上代码

public class BinaryTree {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		BinaryTreeDemo binaryTreeDemo=new BinaryTreeDemo();
		binaryTreeDemo.add(9);
		binaryTreeDemo.add(7);
		binaryTreeDemo.add(8);
		binaryTreeDemo.add(12);
		binaryTreeDemo.add(14);
		binaryTreeDemo.add(13);
		binaryTreeDemo.add(5);
		binaryTreeDemo.add(4);
		binaryTreeDemo.add(6);
		binaryTreeDemo.add(15);
		binaryTreeDemo.print();
		System.out.println();
		System.out.println(binaryTreeDemo.getMin());
		System.out.println(binaryTreeDemo.find(15));		
	}

}

class BinaryTreeDemo{
	private Node root;
	public void add(int date){
		if(root==null){
			root=new Node(date);
		}else {
			root.add(date);
		}
	}
	
	public void print(){
		if(root==null){
			return;
		}else {
			root.print();
		}
	}

    public boolean find(int date){
    	if(root!=null){
    		return root.find(date);
    	}else{ 
    		//System.out.println("123");
    		return false;
		}
    }
    
    public Node getMin(){
    	if(root==null){
    		return null;
    	}else {
    		return root.getMin();
		}
    	
    }
	
	
	class Node{
		private int date;
		private Node leftNode;
		private Node rigNode;
		
		public Node(int date){
			this.date=date;
		}

		public Node() {
			super();
			// TODO Auto-generated constructor stub
		}

		public int getDate() {
			return date;
		}

		public void setDate(int date) {
			this.date = date;
		}
        
		
		public Node getLeftNode() {
			return leftNode;
		}

		public void setLeftNode(Node leftNode) {
			this.leftNode = leftNode;
		}

		public Node getRigNode() {
			return rigNode;
		}

		public void setRigNode(Node rigNode) {
			this.rigNode = rigNode;
		}

		public String toString() {
			return "Node [date=" + date + "]";
		}
		
		public void add(int date){
			if(this.getDate()<date){
				if (this.rigNode==null) {
					this.rigNode=new Node(date);
				} else {
					this.rigNode.add(date);
				}
			}else{
				if (this.leftNode==null) {
				    this.leftNode=new Node(date);
			    }else {
					this.leftNode.add(date);
				}
			}

	    }
		
		public void print(){
			if(this.leftNode!=null){
				this.leftNode.print();				
			}			
			System.out.print(this.getDate()+" ");
			if(this.rigNode!=null){
				this.rigNode.print();				
			}
			
		}
		
		public Node getMin(){
			if(this.leftNode==null){
				return this;
			}else {
				return this.leftNode.getMin();
			}
		}
	
		public boolean find(int date){			
			if(this.getDate()==date){
				return true;
			}else {
				if(this.getDate()<date){
					if(this.rigNode==null){
						return false ;
					}else {
						return this.rigNode.find(date);
					}
				}else {
					if(this.leftNode==null){
						return false;
					}else{
						return this.leftNode.find(date);
					}
				}
			}
	    }
	}	
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值