摘要: 相关代码: include using namespace std; typedef struct node//创建节点结构 { char data;//数据元素 struct node Lchild;//指向左孩子结点 struct node Rchild;//指向右孩子结点 }BinNode, 阅读全文
posted @ 2019-04-27 18:57 zio 阅读(1884) 评论(0) 推荐(0) 编辑