树的创建
时间:2019-04-28 00:57:32
收藏:0
阅读:127
include <stdio.h>
include <stdlib.h>
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
评论(0)