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