摘要: #include <iostream>#include <malloc.h>using namespace std;typedef int ElementType; typedef struct tree{ char data; struct tree *lchild,*rchild;}Tree;v 阅读全文
posted @ 2019-04-30 08:52 罗小赐 阅读(256) 评论(0) 推荐(0) 编辑