Java二叉树遍历不完,Java实现二叉树后序非递归遍历(好理解)

//不明白的大家可以一起讨论!欢迎留言!

/**

* public class Node {

public int data; //树结点标号

public Node lchild; //左子树

public Node rchild; //右子树

}

后序遍历递归定义:先左子树,后右子树,再根节点。

后序遍历的难点在于:需要判断上次访问的节点是位于左子树,还是右子树。

若是位于左子树,则需跳过根节点,先进入右子树,再回头访问根节点;

若是位于右子树,则直接访问根节点。

*/

public void postOrder(Node node){

if(node==null)

return;

Stack s = new Stack();

Node curNode; //当前访问的结点

Node lastVisitNode; //上次访问的结点

curNode = node;

lastVisitNode = null;

//把currentNode移到左子树的最下边

while(curNode!=null){

s.push(curNode);

curNode = curNode.getLchild();

}

while(!s.empty()){

curNode = s.pop(); //弹出栈顶元素

//一个根节点被访问的前提是:无右子树或右子树已被访问过

if(curNode.getRchild()!=null&&curNode.getRchild()!=lastVisitNode){

//根节点再次入栈

s.push(curNode);

//进入右子树,且可肯定右子树一定不为空

curNode = curNode.getRchild();

while(curNode!=null){

//再走到右子树的最左边

s.push(curNode);

curNode = curNode.getLchild();

}

}else{

//访问

System.out.println(curNode.getData());

//修改最近被访问的节点

lastVisitNode = curNode;

}

} //while

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值