Java实现二叉树建立以及三种遍历

Java实现二叉树建立以及三种遍历

public class BinTree {
	static int[] array = {1,2,3,4,5,6,7,8,9};
	static List<Node> nodelist = null;
	
	/*二叉树节点*/
	public static class Node {
		Node leftChirld;
		Node rightChirld;
		int data;
		public Node(int data) {
			leftChirld=null;
			rightChirld=null;
			this.data=data;
		}
	}
	
	/*构建二叉树*/
	public static void build() {
		nodelist=new LinkedList<Node>();
		
		for(int node=0;node<array.length;node++) {
			nodelist.add(new Node(array[node]));
		}
		
		for(int index=0;index<array.length/2-1;index++) {
			nodelist.get(index).leftChirld = nodelist.get(index*2+1);
			nodelist.get(index).rightChirld = nodelist.get(index*2+2);
			
		}
		
		int last = array.length/2-1;
		nodelist.get(last).leftChirld = nodelist.get(last*2+1);
		
		/*判断最后的节点是否有右孩子,有的话就进行添加*/
		if (array.length%2==1) {
			nodelist.get(last).rightChirld = nodelist.get(last*2+2);
		}

	}
	
	/*先序遍历*/
	public static void proOrder(Node node) {
		if (node==null) {
			return;
		}
		
		System.out.println(node.data+"");
		proOrder(node.leftChirld);
		proOrder(node.rightChirld);
	}
	
	
	/*中序遍历*/
	public static void inOrder(Node node) {
		if (node==null) {
			return;
		}
		inOrder(node.leftChirld);
		System.out.println(node.data+"");
		inOrder(node.rightChirld);
	}
	
	/*后序遍历*/
	public static void postOrder(Node node) {
		if (node==null) {
			return;
		}
		
		postOrder(node.leftChirld);
		postOrder(node.rightChirld);
		System.out.println(node.data+"");
		
	}
	
	
	

	public static void main(String[] args) {
		BinTree binTree = new BinTree();
		binTree.build();
		
		/*获取根节点进行遍历*/
		Node root = nodelist.get(0);
		
		System.out.println("先序遍历:");  
		binTree.proOrder(root);
		System.out.println("");
		
		System.out.println("中序遍历:");  
		binTree.inOrder(root);
		System.out.println("");
		
		
		System.out.println("后序遍历:");  
		binTree.postOrder(root);
		
	}

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值