yetang307

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2022年10月24日

摘要: 二叉树的结构体:左右子树指针(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)