Java第27天——二叉树的深度遍历的栈实现(前序和后序)

1,前序和后序的区别,仅仅在于输出语句的位置不同。

2,二叉树的遍历, 总共有 6 种排列: 1) 左中右 (中序); 2) 左右中 (后序); 3) 中左右 (前序); 4) 中右左; 5) 右左中; 6) 右中左; 我们平常关心的是前三种, 是因为我们习惯于先左后右. 如果要先右后左, 就相当于左右子树互换, 这个是很容易做到的.

3,如果将前序的左右子树互换, 就可得到 4) 中右左; 再进行逆序, 可以得到 2) 左右中. 因此, 要把前序的代码改为后序, 需要首先将 leftChild 和 rightChild 互换, 然后用一个栈来存储需要输出的字符, 最终反向输出即可. 这种将一个问题转换成另一个等价问题的方式, 无论在数学还是计算机领域, 都极度重要.。

4,如果不按上述方式, 直接写后序遍历, 就会复杂得多, 有双重的 while 循环。

/**
	 * Pre-order visit with stack. 用栈实现的前序遍历
	 */
	public void preOrderVisitWithStack() {
		ObjectStack tempStack = new ObjectStack();
		BinaryCharTree tempNode = this;
		while (!tempStack.isEmpty() || tempNode != null) {
			if (tempNode != null) {
				System.out.print("" + tempNode.value + " ");
				tempStack.push(tempNode);
				tempNode = tempNode.leftChild;
			} else {
				tempNode = (BinaryCharTree) tempStack.pop();
				tempNode = tempNode.rightChild;
			} // of if
		} // of while
	}// of preOrderVisitWithSatck

	/**
	 * 用栈实现的后序遍历 Post-order visit with stack
	 */
	public void postOrderVisitWithStack() {
		ObjectStack tempStack = new ObjectStack();
		BinaryCharTree tempNode = this;
		ObjectStack tempOutputStack = new ObjectStack();

		while (!tempStack.isEmpty() || tempNode != null) {
			if (tempNode != null) {
				// Store for output.
				tempOutputStack.push(new Character(tempNode.value));
				tempStack.push(tempNode);
				tempNode = tempNode.rightChild;
			} else {
				tempNode = (BinaryCharTree) tempStack.]pop();
				tempNode = tempNode.leftChild;
			} // Of if
		} // Of while

		// Now reverse output.
		while (!tempOutputStack.isEmpty()) {
			System.out.print("" + tempOutputStack.pop() + " ");
		} // Of while
	}// Of postOrderVisitWithStack

public static void main(String args[]) {


		System.out.println("\r\n前序遍历:");
		temptree2.preOrderVisit();
		System.out.println("\r\n中序遍历:");
		temptree2.inOrderVisit();
		System.out.println("\r\n后序遍历:");
		temptree2.postOrderVisit();

		System.out.println("\r\nIn-order visit with stack:");
		temptree2.inOrderVisitWithStack();
		System.out.println("\r\npre-order visit with stack:");
		temptree2.preOrderVisitWithStack();
		System.out.println("\r\npost-order visit with stack:");
		temptree2.postOrderVisitWithStack();
	}// of main

}

why

 

这里原来是我的前面写ObjectStack的是把depth用static设成了静态常量,导致了这里的tempStack和tempOutputStack还是用的同一个栈。原来如此,当时写栈的时候没有想这么多,看来写代码不能只想着自己舒服,还是要想想老师为什么要这样写。static还是不要乱用。

运行结果(部分)

前序遍历:
A B D C E F 
中序遍历:
B D A E F C 
后序遍历:
D B F E C A 
In-order visit with stack:
B D A E F C 
pre-order visit with stack:
A B D C E F 
post-order visit with stack:
D B F E C A 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值