摘要: #include #include typedef struct tree { char data; struct tree * L, *R; }Tree; void creat(Tree **T)//创建二叉树 { char ch; if ((ch=getchar())=='#') *T=NULL; else { ... 阅读全文
posted @ 2017-05-12 14:39 编程灬世界 阅读(151) 评论(0) 推荐(0)