本文介绍了如何检查一个元素是否在std :: set?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 限时删除!! 如何检查元素是否在集合中? 是否有一个更简单的等价于下面的代码: myset.find(x)!= myset.end() $ c> const bool is_in = container.find(element)!= container.end(); How do you check that an element is in a set?Is there a simpler equivalent of the following code:myset.find(x) != myset.end() 解决方案 The typical way to check for existence in many STL containers is:const bool is_in = container.find(element) != container.end(); 这篇关于如何检查一个元素是否在std :: set?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 1403页,肝出来的.. 09-06 12:13