俊秀香水

文章
6
资源
0
加入时间
3年0月21天

二叉树的创建、遍历、深度、叶子节点个数

#include stdio.h>#include malloc.h>typedef struct bnode...{    char data;    struct bnode *left, *right;}btree;btree *creat()...{    btree *t;    char p;    p = getchar();    if (p == #)        re