2.3 - Binary Tree Traversal
介紹Binary Tree追蹤法則
1. 介紹
Root
/ \
Left Child Right Child2. 應用
2.1 求Binary Tree的前中後序
A
/ \
B C
/ \ / \
D E F G2.2 給予Binary Tree的(前序、中序)或是(後序、中序)可決定唯一的Binary Tree
2.3 Recursive Traversal Algorithm
2.4 Recursive Traversal Algorithm的應用
2.5 以binary tree表示運算式
Last updated