二叉树的遍历 Posted on 2012-09-08 by ZRJ Reply 参考 http://blog.csdn.net/acdnjjjdj… 写了二叉树的遍历,(基本上就是照抄的,囧),抄的时候感慨,stl 真是个好东西啊,另外,在三种次序遍历的实现上,递归的精巧发挥的淋漓尽致啊,还有就是非递归的遍历,设计真的好巧妙 #include <iostream> #include <queue> #include <stack> using n……阅读全文