栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C#

扫描文件,建立倒排索引

C/C++/C# 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

扫描文件,建立倒排索引

文章目录
  • 前言
  • 一,代码
  • 二,遇到的问题


前言

数据结构作业的一部分。

一,代码
#include 
#include 
#include 
#include 
#include 

using namespace std;

struct DocMes {
	int TF = 0;
	queuepos;
};

typedef map> IndexMap;

typedef map invertMap;

string filename[11] = { "0","apple","cherry","grape","mangosteen","oorange","peach","pear","pineapple","pomelo","watermelon" };

void CreateIndex(IndexMap& index) {
	ifstream fileIn;
	for (int i = 1; i <= 10; i++) {
		string filepath = filename[i] + ".txt";
		fileIn.open(filepath.c_str());
		string temp;
		int posNum = 0;
		while (fileIn >> temp) {
			int k = 0;
			posNum++;
			index[temp][i].TF++;
			index[temp][i].pos.push(posNum);
		}
		fileIn.close();
	}
}
void queryProcess(IndexMap& index) {
	string query;
	while (true) {
		cout << "Find your words:" << endl;
		cin >> query;
		if (index.find(query) == index.end()) {
			cout << "ERROR: Can't find " << query << " ! ,please check up your words" << endl;
			continue;
		}
		invertMap::iterator iter;
		iter = index[query].begin();
		while (iter != index[query].end()) {
			cout << filename[iter->first] << ".txt : Tf=" << iter->second.TF << " ; pos = < ";
			while (!iter->second.pos.empty())
			{
				cout << iter->second.pos.front();
				if (iter->second.pos.size() > 1)
				{
					cout << " , ";
				}
				iter->second.pos.pop();
			}
			cout << " >" << endl;
			iter++;
		}
	}
}

int main() {
	IndexMap invertIndex;
	CreateIndex(invertIndex);
	queryProcess(invertIndex);
	return 0;
}
二,遇到的问题

1)初次接触读入文件操作
2)该代码用到较多的map,
map的创建:map
map[key]返回的是value。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/656485.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号