摘要: 用扩展先序遍历序列创建二叉链表 void CreateBiTree (BiTree *bt) { char ch; ch=getchar(); if (ch=='') *bt=NULL; else { *bt=(BiTree)malloc(sizeof(BiTNode)); (*bt)->data= 阅读全文
posted @ 2020-06-09 18:07 eddd 阅读(278) 评论(0) 推荐(0)