1. 首页
  2. 编程语言
  3. C
  4. 数据结构示例(五)——二叉搜索树.doc

数据结构示例(五)——二叉搜索树.doc

上传者: 2020-12-15 18:31:11上传 DOC文件 19.5KB 热度 10次
#include using namespace std; template struct TreeNode { T data; TreeNode *left, *right; }; template class BSTree //: public BinaryTree { public: BSTree:root(NULL){};
下载地址
用户评论