C++多线程实现电子词典
本文实例为大家分享了C++多线程实现电子词典的具体代码,供大家参考,具体内容如下
// Dictionary.cpp : 定义控制台应用程序的入口点。 //vs2013编译 //字典文件:https://pan.baidu.com/s/1YHtwptaq_V8j034U9_J96A #include "stdafx.h" #include <string> #include <vector> #include <iostream> #include <map> #include <fstream> #include <io.h> #include <thread> #include <time.h> #include <Windows.h> using namespace std; class ParseDirectory { public: ParseDirectory(string path){ this->path = path; getFiles(files); isdone = false; t = thread(&ParseDirectory::txtToDic, this); //t.join(); } bool isDone() { return isdone; } map<string, string> getDic() { return vecDics; } virtual ~ParseDirectory() { } private: vector<string> files; string path; thread t; map<string, string> vecDics; bool isdone; void getFiles(vector<string>& files) { //文件句柄 long hFile = 0; //文件信息 struct _finddata_t fileinfo; string p; if ((hFile = _findfirst(p.assign(path).append("\\*").c_str(), &fileinfo)) != -1) { do { //如果是目录,迭代之 if ((fileinfo.attrib & _A_SUBDIR)) { //if (strcmp(fileinfo.name, ".") != 0 && strcmp(fileinfo.name, "..") != 0) //getFiles(p.assign(path).append("\\").append(fileinfo.name), files); continue; } else { files.push_back(p.assign(path).append("\\").append(fileinfo.name)); } } while (_findnext(hFile, &fileinfo) == 0); _findclose(hFile); } } void txtToDic() { for each (string file in files) { fstream f(file); string word, explain; //map<string, string> dic; if (f.is_open()) { //cout << file << endl; while (1) { getline(f, word); if (!getline(f, explain)) break; vecDics[word] = explain; } } f.close(); //vecDics.push_back(dic); } //cout << vecDics.size() << endl; isdone = true; } }; void setColor(unsigned short ForeColor = 2, unsigned short BackGroundColor = 0) { HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);//获取当前窗口句柄 SetConsoleTextAttribute(handle, ForeColor + BackGroundColor * 0x10);//设置颜色 } int _tmain(int argc, _TCHAR* argv[]) { vector<ParseDirectory*> pds; cout << "正在加载资源..."; long start = clock(); vector<map<string, string> > allWords; for (int i = 0; i < 26; i++) { string name = ".\\"; name += 'A' + i; pds.push_back(new ParseDirectory(name)); } int cnt = 0; for (int i = 0; i < pds.size(); i++) { if (pds[i]->isDone()) { cnt++; allWords.push_back(pds[i]->getDic()); Sleep(300); } if (cnt == pds.size()) break; } system("cls"); cout << "加载完成!" << "耗时:" << (clock()-start)/1000.0 << "s" << endl; cout << allWords.size(); string inquir; while (1) { bool flag = false; setColor(); cout << "\n输入要查询的单词:"; setColor(7, 0); cin >> inquir; for (int i = 0; i < allWords.size(); i++) { auto t = allWords[i][inquir]; if (t.size()) { cout << t << endl; flag=true; } } if (!flag) { setColor(4, 0); cout << "抱歉,未找到单词" << endl; } } system("pause"); return 0; }
效果图:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:C语言高效实现向量循环移位
栏 目:C语言
下一篇:C++单例类模板详解
本文标题:C++多线程实现电子词典
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/401.html
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10如何判断一个数是否为2的幂次方?若是,并判断出来是多少次方
- 01-10深入理解C++中常见的关键字含义
- 01-10使用C++实现全排列算法的方法详解
- 01-10如何判断一个数是否为4的幂次方?若是,并判断出来是多少次方
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10C++大数模板(推荐)
- 01-10浅谈C/C++中的static与extern关键字的使用详解
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10SublimeText编译C开发环境设置
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-11ajax实现页面的局部加载
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文