1 Star 0 Fork 127

CodingPanda/数据结构(C++模板实现)

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 731 Bytes
一键复制 编辑 原始数据 按行查看 历史
Y_Dash 提交于 2023-02-25 17:28 +08:00 . 补充二叉搜索树系列的doxygen
/*!
* @file main.cpp
* @author CyberDash计算机考研, cyberdash@163.com(抖音id:cyberdash_yuan)
* @brief main函数文件
* @version 0.2.1
* @date 2023-02-25
*/
#include "test.h"
using namespace std;
/*!
* @brief main函数
* @return 0
* @note
* main函数
* -------
* -------
*
* -------
*/
int main()
{
/// 测试插入
TestBstInsert();
TestAVLInsert();
/// 测试删除
TestBstRemove();
TestAvlInsertAndRemove();
TestAvlInsertAndRemoveRecursive();
/// 测试查询
TestBstSearch();
TestAvlSearch();
/// 测试高度
TestBstAndAvlHeight();
/// 测试最大最小值
TestBSTMaxAndMin();
TestAVLMaxAndMin();
/// 测试清空
TestBstClear();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/code367/data-structures-cpp.git
git@gitee.com:code367/data-structures-cpp.git
code367
data-structures-cpp
数据结构(C++模板实现)
master

搜索帮助