树的创建

时间: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
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!