Tree Traversal
树的遍历方式有前序、中序和后序(DFS),以及层次遍历(BFS)。1. 递归;
2. 非递归,辅助栈。
实现方式见:http://www.cnblogs.com/harrygogo/p/4599097.html