MOOC 樹的同構

原題鏈接 思路 二叉樹表示 採用結構數組表示二叉樹:靜態鏈表 #define MaxTree 10 //結構數組的最大容量 #define ElemType char #define Tree int #define Null -1 //結構數組表示樹,靜態鏈表 struct TreeNode { ElemType Element; //節點的值,此處爲字符型 Tree Left; //
相關文章
相關標籤/搜索