二叉树 非递归 先序遍历 中序遍历 后序遍历 层次遍历

二叉树 中很多问题都是通过遍历的方式来解决的,今天就来谢谢最常见的二叉树非递归遍历。


先定义一下节点的信息:

class TreeNode{
	public int value;
	public TreeNode left;
	public TreeNode right;
	
	public TreeNode(int value){
		this.value = value;
	}
}

1. 先序 非递归 遍历

//先序非递归遍历
public void preOrderUnRecur(TreeNode node){
	if(node==null){
		return;
	}
	
	Stack<TreeNode> stack = new Stack<>();
	stack.add(node);
	while(!stack.isEmpty()){
		System.out.println(node.value);
		if(node.right!=null){
			stack.add(node.left);
		}
		if(node.left!=null){
			stack.add(node.right);
		}
	}
}

2. 中序 非递归 遍历

public void inOrderUnRecur(TreeNode head){
	if(null==head){
		return;
	}
	
	Stack<Node> stack = new Stack<>();
	while(!stack.isEmpty() || head!=null){
		if(head!=null){
			stack.push(head);
			head = head.left;
		}else{
			head = stack.pop();
			System.out.println(head.value);
			head = head.right;
		}
	}
}

3. 后序 非递归 遍历

public void posOrderUnRecur(TreeNode h){
	if(h==null){
		return;
	}
	Stack<TreeNode> stack = new Stack<>();
	stack.push(h);
	TreeNode c = null;
	while(!stack.isEmpty()){
		c = stack.peek();
		if(c.left!=null && h!=c.left && h!=c.right){
			stack.push(c.left);
		}else if(c.right!=null && h!=c.right){
			stack.push(c.right);
		}else{
			System.out.print(stack.pop().value+" ");
			h = c;
		}
	}
}

4. 层序遍历

public void layerTran(TreeNode root){
	if(root==null){
		return;
	}
	
	Queue<TreeNode> queue = new LinkedList<>();
	queue.add(root);
	while(!queue.isEmpty()){
		TreeNode c = queue.poll();
		System.out.println(c.value);
		
		if(c.left!=null){
			queue.add(c.left);
		}
		
		if(c.right!=null){
			queue.add(c.right);
		}
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值