1 Star 18 Fork 3

whb-helloworld/搜索引擎_线上分享

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
debug.cc 652 Bytes
一键复制 编辑 原始数据 按行查看 历史
gitTest-比特科技 提交于 2022-04-01 15:16 . 添加代码
#include "searcher.hpp"
#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
const std::string input = "data/raw_html/raw.txt";
int main()
{
//for test
ns_searcher::Searcher *search = new ns_searcher::Searcher();
search->InitSearcher(input);
std::string query;
std::string json_string;
char buffer[1024];
while(true){
std::cout << "Please Enter You Search Query# ";
fgets(buffer, sizeof(buffer)-1, stdin);
buffer[strlen(buffer)-1] = 0;
query = buffer;
search->Search(query, &json_string);
std::cout << json_string << std::endl;
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/whb-helloworld/search-engine-online-sharing.git
git@gitee.com:whb-helloworld/search-engine-online-sharing.git
whb-helloworld
search-engine-online-sharing
搜索引擎_线上分享
master

搜索帮助