摘要: //二叉查找树的实现#include #include //#define _OJ_typedef struct tree1{ int data; struct tree1 *lchild; struct tree1 *rchild;} tree1, *tree;treefind(... 阅读全文
posted @ 2015-11-23 10:01 别笑 阅读(160) 评论(0) 推荐(0) 编辑