首页 > TAG信息列表 > CreateBinTree

数据结构复习代码——递归实现二叉树的定义以及创建

1、递归实现二叉树的定义以及创建 #include<stdio.h> #include<assert.h> #include<malloc.h> #define ElemType char typedef struct BinTreeNode { ElemType data; struct BinTreeNode *leftchild; struct BinTreeNode *rightchild; }BinTreeNode; typed