樹 前序,中序,後序,層次遍歷,獲取樹的高度

本程序建樹方法採用「先序遍歷+空樹用0表示」 結點和樹的構建 class Node { public: char data; Node *left,*right; Node() { left=right=NULL; } }; class Tree { private: Node *Root; public: Tree(){Root=Create();} Node* Cr
相關文章
相關標籤/搜索