摘要: #include "stdafx.h"#include #include typedef struct btnode * bitreptr;struct btnode{ int data; //数据 bitreptr lchild; //左节点指针 bitreptr rchild; //右节点指针}... 阅读全文
posted @ 2007-08-04 11:01 吴东雷 阅读(703) 评论(0) 推荐(0) 编辑