我有一个随机生成的整数列表,并使用这些值填充QMap,但我希望按值排序QMap
答案 0 :(得分:3)
默认情况下,QMap
中的项目始终按键排序。所以,如果你像QMap
那样迭代:
QMap<int, int>::const_iterator i = yourQMap.constBegin();
while (i != yourQMap.constEnd()) {
cout << i.key() << ": " << i.value() << endl;
++i;
}
您将获得按键排序的结果。
尝试考虑将您的任务转换为适合标准算法。 否则,您可以使用此方法对标题进行排序:
QList<int> list = yourQMap.values();
qSort(list.begin(), list.end());
然后,如果您需要 - 通过调用方法QMap::key(const T &value);
来获取关联的密钥。
答案 1 :(得分:3)
这是演示如何按值排序QMap而不是qt c ++中的键。 提取QMap的值并将其存储在QList容器对象中,然后通过qSort方法进行排序。密钥也存储在QList中。排序完成后,然后清除QMap对象,然后按值按升序将键和值插回QMap容器中。请参阅以下解决方案:
#include <QCoreApplication>
#include <qalgorithms.h>
#include <QMap>
#include <QDebug>
#include <QList>
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
QMap <int, int> dataMapList;
//QMap <int, int> sorted = new QMap<int, int>();
QList <int> keys; // container to store all keys from QMap container
QList<int> values; // container to store all values from QMap container
QMap<int, int>::Iterator h; // used to loop/ iterate through QMap
// used to iterate through QLists
QList<int>::Iterator i; //
QList<int>::Iterator j;
//inserts to QMap Container
dataMapList.insert(1,34);
dataMapList.insert(3,2);
dataMapList.insert(2,32);
dataMapList.insert(14,89);
dataMapList.insert(7,23);
h=dataMapList.begin();
qDebug()<< "unsorted";
//list out the unsorted values along with their respective keys
while(h!=dataMapList.end()){
qDebug() << "[" << h.key()<<"], " <<"[" <<h.value()<<"]" << endl;
h++;
}
values = dataMapList.values(); // pass all values in the QMap to a QList container to store values only
keys= dataMapList.keys(); // pass all keys in the QMap to a QList container to store already sorted by default keys
qSort(values); // sorts the values in ascending order
dataMapList.clear(); // empties the QMap
i=values.begin();
j=keys.begin();
// insert back the sorted values and map them to keys in QMap container
while(i!=values.end() && j!=keys.end()){
dataMapList.insert(*j, *i);
i++;
j++;
}
qDebug() << "sorted" << endl;
h=dataMapList.begin();
//the display of the sorted QMap
while(h!=dataMapList.end()){
qDebug() << "[" << h.key()<<"], " <<"[" <<h.value()<<"]" << endl;
h++;
}
return a.exec();
}
注意:QMap和QList的迭代器用于遍历容器以访问存储的值和/或密钥。这些也有助于显示列表中的项目(未排序和排序)。此解决方案在Qt控制台应用程序中完成。请评论: - )
答案 2 :(得分:2)
另一种选择,取决于具体情况,只是交换键和值,因为键将由QMap
自动排序。在大多数情况下,值不是唯一的,因此只需使用QMultiMap
。
例如,假设我们在QMap中有以下数据:
Key Value
--- -----
1 100
2 87
3 430
4 87
以下代码将按值对数据进行排序。
QMap<int, int> oldMap;
QMultiMap<int, int> newMap;
QMapIterator<int, int> it(oldMap);
while (it.hasNext())
{
it.next();
newMap.insert(it.value(), it.key()); //swap value and key
}
我们的新地图现在看起来像这样:
Key Value
--- -----
87 4
87 2
100 1
430 3