Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Ruby I can do:

 [1,2,3,4].include?(4) #=>True

In Haskell I can do :

4 `elem`   [1,2,3,4]   #=> True

What should I do in C++?

share|improve this question

5 Answers

up vote 8 down vote accepted

There isn't a built-in function doing exactly that. There is std::find which comes close, but since it doesn't return a bool it is a bit more awkward to use.

You could always roll your own, to get syntax similar to JIa3ep's suggestion, but without using count (which always traverses the entire sequence):

template <typename iter_t>
bool contains(iter_t first, iter_t last, typename iter_t::value_type val){
    return find(first, last, val) != last;
}

Then you can simply do this to use it:

std::vector<int> x;

if (contains(x.begin(), x.end(), 4)) {...}
share|improve this answer
Is this code supposed to compile? – GRB Aug 23 '09 at 15:15
In theory. I haven't tested it. ;) What problems are you seeing with it? – jalf Aug 23 '09 at 15:20
Well the two compile-error issues I see are that you combine the constructor and operator() overload in one call (need to do contains(x.begin(), x.end())(4)) but then on top of that since contains is a functor it doesn't benefit from template type inference (so assuming you're searching a vector<int> you'd have to call contains with contains<vector<int>::iterator>(...)(...)). Finally as a logic error you probably want find(first, last, val), not find(first, first, val). – GRB Aug 23 '09 at 15:38
doh, you're right. Teach me not to write code just after waking up. And I wonder why I made it a functor in the first place. I'd better fix it then. ;) – jalf Aug 23 '09 at 18:00
3  
C++0x has std::any_of which returns a bool and will do this just fine. This is in <algorithm> in visual studio 2010. – Rick Aug 24 '09 at 2:32
show 2 more comments

Here an example using find:

#include <iostream>
#include <vector>
#include <algorithm>

int main() {
        std::vector<int> Num(4);
        //insert values
        Num[0]=1;
        Num[1]=2;
        Num[2]=3;
        Num[3]=4;
        std::vector<int>::iterator p = find(Num.begin(), Num.end(), 4);
        if (p == Num.end())
           std::cout  << "Could not find 4 in the vector"  << std::endl;
        else
           std::cout  << "Have found 4 in the vector"  << std::endl;
        return 0;
}
share|improve this answer
2  
std::find to be precise :) – Yuxiu Li Aug 23 '09 at 7:51
Now it should be complete :) – Burkhard Aug 23 '09 at 8:04
1  
@forcey, No need to fully qualify find according to Koenig lookup (C++ Standard 3.4.2). – Kirill V. Lyadvinsky Aug 23 '09 at 9:26
2  
Burkhart: you forgot one std:: in front of the vector<int>::iterator. Qualifying find is really not necessary here due to argument-dependend lookup (or Koenig lookup). However, that's an implementation detail. For all we know, vector<int>::iterator could resolve to int* or a type not found in the std namespace and lookup would fail. So yes, to be absolutely standards compliant, you need to open (or qualify) the namespace. – Konrad Rudolph Aug 23 '09 at 10:21
2  
I also would have to qualify cout and endl without the using namespace std;, would I not? – Burkhard Aug 23 '09 at 11:34
show 4 more comments

If the vector is ordered, you can also use std::binary_search.

std::binary_search(vec.begin(), vec.end(), 4)  // Returns true or false
share|improve this answer

To get similar syntax as in OP's question:

std::vector<int> x;

if ( count( x.begin(), x.end(), VAL_TO_FIND ) ) {
 // found
} else {
 // not found 
}
share|improve this answer
2  
Requires iterating through the entire data structure. – Brian Gianforcaro Aug 23 '09 at 7:26
1  
Yes, but it has the same complexity as find has = O(n). – Kirill V. Lyadvinsky Aug 23 '09 at 7:30
3  
There is no reason to iterate through a data structure of 100,000 objects when the one i want to know is inside the data structure is at index one. std::find's best case run time kicks' the pants of of std:count for seeing if an object just exists in a data structure. In all cases find is better or as good as count. Their is no reason to use it. – Brian Gianforcaro Aug 23 '09 at 7:37
2  
For small arrays that is not big deal. For large arrays you should consider sorting them(or use boost::multi_index which is RB-tree). Then you'll search for O(n*log n) on RB-tree, or for O(log n) on plain sorted array. – Kirill V. Lyadvinsky Aug 23 '09 at 7:39
1  
The reason to use count is to get same syntax as in question. I mentioned it in the answer. Usually using find is a good choice. – Kirill V. Lyadvinsky Aug 23 '09 at 7:42

You could use std::set This has a find() method.

share|improve this answer
Every container has a find method. It's just usually a nonmember. – jalf Aug 23 '09 at 12:03
2  
There is a find algorithm which can be used with any container but the std::set class is designed to be efficient for typical set operations. For example the generic std::find() takes O(n) to find a value, whereas std::set::find() will take O(ln(n)) to find a value. – teambob Aug 23 '09 at 22:49
The STL philosophy can be summarized as : If it's a member, it's because the class was intended to do so. If it's a non-member, it's because it's possible. See e.g. random iterators (operator+) and other iterators (std::advance) – MSalters Aug 24 '09 at 8:09
@teambob: That's the way it is in theory. Note that in practice there often is a deviation from the theory, usually towards the side of std::vector which plays much better with processor caches. OTOH, if std::set fits the bill from an algorithmic POV, I`d take this until profiling shows it comes with a significant performance cost. – sbi Aug 24 '09 at 9:38
@sbi: actually the minimum O() performance is specified in the standard, so it is not just theory. I agree with you that if a std::vector suits the needs of the majority of the code the std::find(). But if the OP is only dealing with this list of numbers as set it would be good to use std::set() We should use the right tool for the job. std::set is the optimal tool for the problem the OP described. When the OP has to fit this problem into a larger piece of code std::set may not be the best tool for the job. – teambob Aug 25 '09 at 23:13
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.