摘要: #include <stdio.h> #include <stdlib.h> struct Bintree { char info; struct Bintree *lchild,*rchild; }; typedef struct Bintree *BinTreeNode; typedef str 阅读全文
posted @ 2020-11-26 18:56 嘻嘻嘻ziixi 阅读(120) 评论(0) 推荐(0) 编辑