- 1、本文档共3页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
QT4.6的并行处理机制
QT4.6 的并行处理机制
google 的数据后端处理大家可能听说过,所使用的并行机制 是map-reduce, 也就是用map 去
收集整理一个数据集,之后用reduce 对数据集进行处理,得出想要的结果。原理很简单,但
是就是这个简单的原理构成了 google 搜索 的强大的基石,另外 google 的map-reduece 是分
布式的,呵呵
这段时间研究 qt4.6 ,它对于并行处理这一块做了非常不错的封装,使用很简单,不用考虑
线程同步处理等问题,下面就用这个最著名的统计单词个数的例子说 明,代码真实太简单
了
#include QList
#include QMap
#include QTextStream
#include QString
#include QStringList
#include QDir
#include QTime
#include QApplication
#include QDebug
#include qtconcurrentmap.h
#ifndef QT_NO_CONCURRENT
using namespace QtConcurrent;
/*
Utility function that recursivily searches for files.
*/
QStringList findFiles (const QString startDir, QStringList filters)
{
QStringList names;
QDir dir (startDir);
foreach (QString file, dir.entryList (filters, QDir::Files))
names += startDir + / + file;
foreach (QString subdir, dir.entryList (QDir::AllDirs |
QDir::NoDotAndDotDot))
names += findFiles (startDir + / + subdir, filters);
return names;
}
typede QMapQString, int WordCount;
/*
Single threaded word counter function.
*/
WordCount singleThreadedWordCount (QStringList files)
{
WordCount wordCount;
foreach (QString file, files) {
QFile (file);
f.open (QIODevice::ReadOnly);
QTextStream textStream ( );
while (textStream.atEnd () == false)
foreach(QString word, textStream.readLine ().split( ))
wordCount [word] += 1;
}
return wordCount;
}
// countWords counts the words in a single file. This function is
// called in parallel by several threads and must be thread
// safe.
WordCount countWords (const QString file)
{
QFile (file);
f.open (QIODevice::ReadOnly);
QTextStream textStream ( );
WordCount wordCount;
while (textStream.atEnd () == false)
foreach (QString word, textStream.readLine ().split( ))
wordCount [word] += 1;
return wordCount;
}
// r
文档评论(0)