C++ std::multiset find 返回值不对

Posted 软件工程小施同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ std::multiset find 返回值不对相关的知识,希望对你有一定的参考价值。

不是不对!而是下面的规则

find(elem)

返回元素值为elem的第一个元素,如果没有返回end()

【C++ STL】Set和Multiset - Memset - 博客园

#include <iostream>
#include <set>
using namespace std;

class stru{
	public:
   	 	stru(int a, int b): x(a), y(b){}
		int x;
   	 	int y;
};
 
bool operator<(const stru& a, const stru& b)    //比较的是x的值
{
    return a.x < b.x;
}
 
int main()
{
    //创建
    multiset<stru> st;
    
    //插入
    st.insert(stru(9, 40));   //添加成功,因为multiset可以有重复的值,也就是说有x = 10的stru也可以。
    st.insert(stru(9, 41));    //添加成功
	st.insert(stru(10, 42));
	st.insert(stru(10, 43));
    
    //查看
    
    for (auto it = st.rbegin(); it != st.rend(); it++)   //10-40 9-43 9-45 8-40 7-35 6-30 5-25 4-20 3-15 2-10 1-5 0-0
        cout<<(*it).x<<"-"<<(*it).y<<" ";
    cout<<endl;
    
    // 查找
    for(int i=0; i < 10; i++){
		auto it = st.find(stru(10, 43));           //和上面一样,只会找x = 9的第一项。
    	cout<<it->x<<" "<<it->y<<endl;             // 返回10,42
	}
    
}

并没有返回想要的元素 

以上是关于C++ std::multiset find 返回值不对的主要内容,如果未能解决你的问题,请参考以下文章

C++ std::multiset返回值 has no member named ‘first’

C++ std::multiset 删除 查找 重复元素中的特定元素

std::unordered_multiset 的用例

为啥使用 std::multiset 作为优先级队列比使用 std::priority_queue 更快?

如何在不重载 `operator()`、`std::less`、`std::greater` 的情况下为`std::multiset` 提供自定义比较器?

在 std::multiset 中,如果找到一个元素,是不是有一种函数或算法可以只擦除一个样本(单一或重复)