关于二叉树的实现,查找,各种输出

package com.lidong4;
import java.util.*;
public class Tree {

 /**
  * @param args
  */
 public static void main(String[] args) {
  // TODO Auto-generated method stub
  int arr[]={12,11,34,45,67,38,56,43,22,8};
  Node root=new Node(arr[0]);
  for(int i=1;i<arr.length;i++){
   root.insertNode(root, new Node(arr[i]));
  }
  ArrayList<Node> lis=new ArrayList<Node>();
  lis.add(root);
  root.show(lis);
        root.getKey(67, root);
       // root.leftShow(root);
        //root.midShow(root);
        root.rightShow(root);
 }

}
class Node{
 int data;
 Node leftpointer;
 Node rightpointer;
 public Node(int data){
  this.data=data;
  //this.leftpointer=null;
  //this.rightpointer=null;
  }
 public int getdata(){
  return data;
  
 }
 public void insertNode(Node subNode,Node newNode){
  while(true){
   if(subNode.data>newNode.data){
    if(subNode.leftpointer==null){
     subNode.leftpointer=newNode;
     break;
    }else{
     subNode=subNode.leftpointer;
    }
   }else{
    if(subNode.rightpointer==null){
     subNode.rightpointer=newNode ;
     break;
     }else{
      subNode=subNode.rightpointer;
     }
    }
   }
 }
 public void show(ArrayList<Node> nodes){
 if(nodes==null||nodes.size()==0){
  return;
 }
 ArrayList<Node> temp=new ArrayList<Node>();
 for(Node i:nodes){
  System.out.print(i.getdata()+" ");
  if(i.leftpointer!=null){
   temp.add(i.leftpointer);
  }
  if(i.rightpointer!=null){
   temp.add(i.rightpointer);
  }
 }
 System.out.println();
 nodes.removeAll(nodes);
 show(temp);
 }
 public void getKey(int key,Node root){
  Node result=root;
  while(result.data!=key){
   if(key<result.data){
    result=result.leftpointer;
   }else{
    result=result.rightpointer;
   }
   if(result==null){
    System.out.println("找不到此数!");
    break;
   }
   }
  //System.out.println("找到此数!");
 }
    public void leftShow(Node root){
     if(root!=null){
      System.out.print(root.data+" ");
      leftShow(root.leftpointer);
      leftShow(root.rightpointer);
     }
    }
    public void midShow(Node root){
     if(root!=null){
      
      midShow(root.leftpointer);
      System.out.print(root.data+" ");
      midShow(root.rightpointer);
     }
     
    }
    public void rightShow(Node root){
     if(root!=null){
      
      rightShow(root.leftpointer);
      rightShow(root.rightpointer);
      System.out.print(root.data+" ");
     }
    }
}

转载于:https://my.oschina.net/u/1270794/blog/167208

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值