QT QVector> qSort 排序

QT的算法与容器之类的与存C++有一些区别。

头文件:

#include

//这个用于qt排序算法qSort的。

#include

//这个是用于QT QVector容器的


纯C++用的是

#include

#include


所以QT里面的叫法也不一样,C++叫STL,  而QT叫QTL


现在直接讲QT一个排序实例吧:

头文件(.h)的两个私有成员:

static bool myCmpare(QPair p1, QPair  p2);

// 这里很值得注意,static必须要用, 静态成员,没有this指针。

QVector> m_fromVector;



实现文件(.cpp)的对应实现:

bool Test::myCmpare(QPair p1, QPair  p2)
{
return p1.second < p2.second;
}


bool Test::test()

{

........

foreach(QFileInfo fileInfo, customCacheDir.entryInfoList()) {
// m_recordService->mergeRecordToDub(fileInfo.filePath(),dubPath);
const qint64 from = fileInfo.fileName().split(QLatin1String("_")).at(0).toInt();
m_fromVector.push_back(qMakePair(fileInfo.filePath(), from));
}
qSort(m_fromVector.begin(), m_fromVector.end(), myCmpare);


for(QVector>::const_iterator iterat = m_fromVector.begin(); iterat != m_fromVector.end(); ++iterat ) {
m_recordService->mergeRecordToDub(iterat->first, dubPath);
}

........

//部分非使用代码省略

}

// 主要看这个qSort(m_fromVector.begin(), m_fromVector.end(), myCmpare);

这里是对qSort算法的直接用法。



你可能感兴趣的:(QT学习之路,QT,QVector,排序)