我需要找到矢量对的第一个元素的范围。我需要这个范围的地图,它计算此向量中的重复条目。 这是一个剪切的代码以及我如何管理它。也许有另一个更好的解决方案?
unordered_map<int, int> frequency;
vector<pair<unsigned int,Point>> Roi_Num_Koord;
vector<int> Roi_first_Element;
int main()
{
// Part1: fill the Vector pair
Roi_Num_Koord.emplace_back(make_pair(0,Point(3.6));
Roi_Num_Koord.emplace_back(make_pair(1,Point(4,8));
Roi_Num_Koord.emplace_back(make_pair(2,Point(8.3));
Roi_Num_Koord.emplace_back(make_pair(3,Point(4,6));
// Part 2: now copy the first element to another vector
for (int i = 0; i < Roi_Num_Koord.size(); i++)
{
Roi_first_Element.emplace_back(Roi_Num_Koord[i].first);
}
// Part 3: now do the duplicate search (Code was taken out of the internet)
for (int i : Roi_first_Element)
{
++frequency[i];
cout << "freque "<<frequency[i] << endl;
}
for (const auto& e : frequency)
{
if (e.second == 5)
{
std::cout << "Roi " << e.first << " encountered " << e.second << " times\n";
}
}
}
那么是否有可能删除第2部分并找出Roi_Num_Koord
的第一个元素的范围?因此我不必将此向量的第一个元素复制到另一个向量(Roi_first_Element
)
答案 0 :(得分:1)
是的,第二步完全是多余的。您只需遍历容器,无论何时需要该对的第一个元素,您都会明确地表达它,就像您在步骤2中所做的那样。
for(const pair<unsigned int,Point>& element : Roi_Num_Koord)
{
++frequency[element.first];
cout << "freque " << frequency[element.first] << endl;
}