ANYWEI : CODING

积累点滴,成就梦想

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

09 2012 档案

摘要:直接上代码 1 #ifndef TREE_H 2 #define TREE_H 3 4 #include <iostream> 5 #include <malloc.h> 6 7 typedef int ElemType; 8 9 typedef struct Bintree10 {11 ElemType key;12 struct Bintree* left;13 struct Bintree* right;14 }Bintree,*pBintree;15 16 17 pBintree BT_Insert(ElemType target,pBintree* pp... 阅读全文
posted @ 2012-09-09 20:54 anywei 阅读(616) 评论(0) 推荐(0)