typedef char ElementType; typedef struct TNode *Position; typedef Position BinTree; struct TNode{ ElementType Data; BinTree Left; BinTree Right; }; BinTree CreatBinTree();
树的创建
原文:https://www.cnblogs.com/hhlhyl/p/10781205.html