1 Star 0 Fork 127

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

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.cpp 762 Bytes
一键复制 编辑 原始数据 按行查看 历史
Y_Dash 提交于 2023-06-23 00:53 +08:00 . 字符串优化doxygen
/*!
* @file main.cpp
* @author CyberDash计算机考研, cyberdash@163.com(抖音id:cyberdash_yuan)
* @brief 字符串匹配Demo演示
* @version 0.2.1
* @date 2021-08-23
*/
#include "test.h"
/*!
* @brief **main函数**
* @return 0
* @note
* main函数
* -------
* -------
*
* -------
* 测试-字符串-基本函数\n
* 测试-字符串-BF算法\n
* 测试-字符串-KMP算法\n
* 测试-字符串-KMP算法(CyberDash版)\n
*
*
* -------
*/
int main() {
// 测试-字符串-基本函数
TestStringBaseFunctions();
// 测试-字符串-BF算法
TestBruteForceMatch();
// 测试-字符串-KMP算法
TestKmpMatch();
// 测试-字符串-KMP算法(CyberDash版)
TestKmpMatchCyberDash();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hangerfor/data-structures-cpp.git
git@gitee.com:hangerfor/data-structures-cpp.git
hangerfor
data-structures-cpp
数据结构(C++模板实现)
master

搜索帮助