二叉樹1

#include<iostream.h> typedef struct BiTree{ char data; struct BiTree* lchild; struct BiTree* rchild; }BiTree; void CreatBitree(BiTree **temp) { char ch; cin>>ch; if (ch == '#') *temp = NULL; else { *t
相關文章
相關標籤/搜索