摘要:
二叉树的结构体:左右子树指针(Tree *) 值(int) typedef struct Tree { char data; struct Tree* lchild, * rchild; } * BiTree; 二叉树的先序创建 BiTree Create() { char ch;scanf_s(" 阅读全文
posted @ 2022-10-24 16:11
椰糖
阅读(41)
评论(0)
推荐(0)
|
摘要:
二叉树的结构体:左右子树指针(Tree *) 值(int) typedef struct Tree { char data; struct Tree* lchild, * rchild; } * BiTree; 二叉树的先序创建 BiTree Create() { char ch;scanf_s(" 阅读全文
posted @ 2022-10-24 16:11
椰糖
阅读(41)
评论(0)
推荐(0)
|