編程練習——二叉樹(BinaryTree)

先寫一個樹節點類。使用Temple也能夠,不使用的話,使用特定類型,用法比較侷限。不過本着「今天儘可能不要作出今天沒必要要的決定」極限編程法制。作一個特殊類型的BinaryTree,也何嘗不可。node 這裏的TreeNode只有數據域。編程   template<class T> class TreeNode { private:  T data;  TreeNode<T> * left;  T
相關文章
相關標籤/搜索