如何检查元素是否在集合中?
是否有更简单的等效代码:
myset.find(x) != myset.end()
答案 0 :(得分:338)
检查许多STL容器中存在的典型方法是:
const bool is_in = container.find(element) != container.end();
答案 1 :(得分:171)
简单地告知元素是否存在的另一种方法是检查count()
if (myset.count(x)) {
// x is in the set, count is 1
} else {
// count zero, i.e. x not in the set
}
然而,大多数时候,我发现自己需要访问元素,无论我检查它的存在。
所以我必须找到迭代器。然后,当然,最好简单地将它与end
进行比较。
set< X >::iterator it = myset.find(x);
if (it != myset.end()) {
// do something with *it
}
答案 2 :(得分:35)
为了澄清,在这些容器类型中没有像contains()
这样的成员的原因是因为它会打开你写低效的代码。这样的方法可能只是在内部执行this->find(key) != this->end()
,但考虑当密钥确实存在时你所做的事情;在大多数情况下,您将需要获取元素并使用它执行某些操作。这意味着你必须做一秒find()
,效率低下。最好直接使用find,因此您可以缓存结果,如下所示:
Container::const_iterator it = myContainer.find(key);
if (it != myContainer.end())
{
// Do something with it, no more lookup needed.
}
else
{
// Key was not present.
}
当然,如果你不关心效率,你总是可以自己动手,但在这种情况下你可能不应该使用C ++ ...;)
答案 3 :(得分:6)
如果您要添加contains
函数,它可能如下所示:
#include <algorithm>
#include <iterator>
template<class TInputIterator, class T> inline
bool contains(TInputIterator first, TInputIterator last, const T& value)
{
return std::find(first, last, value) != last;
}
template<class TContainer, class T> inline
bool contains(const TContainer& container, const T& value)
{
// This works with more containers but requires std::begin and std::end
// from C++0x, which you can get either:
// 1. By using a C++0x compiler or
// 2. Including the utility functions below.
return contains(std::begin(container), std::end(container), value);
// This works pre-C++0x (and without the utility functions below, but doesn't
// work for fixed-length arrays.
//return contains(container.begin(), container.end(), value);
}
template<class T> inline
bool contains(const std::set<T>& container, const T& value)
{
return container.find(value) != container.end();
}
这适用于std::set
,其他STL容器,甚至是固定长度的数组:
void test()
{
std::set<int> set;
set.insert(1);
set.insert(4);
assert(!contains(set, 3));
int set2[] = { 1, 2, 3 };
assert(contains(set2, 3));
}
正如评论中所指出的,我无意中使用了一个新的C ++ 0x函数(std::begin
和std::end
)。以下是VS2010的近乎重要的实现:
namespace std {
template<class _Container> inline
typename _Container::iterator begin(_Container& _Cont)
{ // get beginning of sequence
return (_Cont.begin());
}
template<class _Container> inline
typename _Container::const_iterator begin(const _Container& _Cont)
{ // get beginning of sequence
return (_Cont.begin());
}
template<class _Container> inline
typename _Container::iterator end(_Container& _Cont)
{ // get end of sequence
return (_Cont.end());
}
template<class _Container> inline
typename _Container::const_iterator end(const _Container& _Cont)
{ // get end of sequence
return (_Cont.end());
}
template<class _Ty,
size_t _Size> inline
_Ty *begin(_Ty (&_Array)[_Size])
{ // get beginning of array
return (&_Array[0]);
}
template<class _Ty,
size_t _Size> inline
_Ty *end(_Ty (&_Array)[_Size])
{ // get end of array
return (&_Array[0] + _Size);
}
}
答案 4 :(得分:3)
插入元素时,您还可以检查元素是否在设置中。 单个元素版本返回一对,其成员对:: first设置为指向新插入元素或集合中已有的等效元素的迭代器。如果插入了新元素,则对中的pair :: second元素设置为true;如果已存在等效元素,则设置为false。
例如:假设该集合已经有20作为元素。
std::set<int> myset;
std::set<int>::iterator it;
std::pair<std::set<int>::iterator,bool> ret;
ret=myset.insert(20);
if(ret.second==false)
{
//do nothing
}
else
{
//do something
}
it=ret.first //points to element 20 already in set.
如果新插入元素而不是pair :: first将指向set中新元素的位置。
答案 5 :(得分:3)
在 C ++ 20 中,我们最终将获得std::set::contains
方法。
#include <iostream>
#include <string>
#include <set>
int main()
{
std::set<std::string> example = {"Do", "not", "panic", "!!!"};
if(example.contains("panic")) {
std::cout << "Found\n";
} else {
std::cout << "Not found\n";
}
}
答案 6 :(得分:2)
自己写:
template<class T>
bool checkElementIsInSet(const T& elem, const std::set<T>& container)
{
return container.find(elem) != container.end();
}
答案 7 :(得分:2)
I use
if(!my_set.count(that_element)) //Element is present...
;
But it is not as efficient as
if(my_set.find(that_element)!=my_set.end()) ....;
My version only saves my time in writing the code. I prefer it this way for competitive coding.
答案 8 :(得分:0)
我能为contains
和std::list
编写一般std::vector
函数,
template<typename T>
bool contains( const list<T>& container, const T& elt )
{
return find( container.begin(), container.end(), elt ) != container.end() ;
}
template<typename T>
bool contains( const vector<T>& container, const T& elt )
{
return find( container.begin(), container.end(), elt ) != container.end() ;
}
// use:
if( contains( yourList, itemInList ) ) // then do something
这清除了语法。
但是我无法使用template template parameter magic使这个工作成为任意的stl容器。
// NOT WORKING:
template<template<class> class STLContainer, class T>
bool contains( STLContainer<T> container, T elt )
{
return find( container.begin(), container.end(), elt ) != container.end() ;
}
关于改进最后答案的任何评论都会很好。
答案 9 :(得分:0)
//一般语法
clear
/ *在下面的代码中我试图找到元素4 in和int set如果它存在或不* /
select Column1-convert(bigint, (SUBSTRING(convert(varchar(20),Column1),2,len(convert(varchar(20),Column1))))) ,*
from yourtable