All I wanna do is to check whether an element exists in the vector or not, so I can deal with each case.
if ( item_present )
do_this();
else
do that();
|
|
Some variant of:
|
|||||||||||||||||||
|
|
As others have said, use the STL |
||||
|
|
Use find from the algorithm header of stl.I've illustrated its use with int type. You can use any type you like as long as you can compare for equality (overload == if you need to for your custom class).
|
|||||||
|
|
If your vector is not ordered, use the approach MSN suggested:
If your vector is ordered, use binary_search method Brian Neal suggested:
binary search yields O(log n) worst-case performance, which is way more efficient than the first approach. In order to use binary search, you may use qsort to sort the vector first to guarantee it is ordered. |
|||
|
|
|
Use the STL find function. Keep in mind that there is also a find_if function, which you can use if your search is more complex, i.e. if you're not just looking for an element, but, for example, want see if there is an element that fulfills a certain condition, for example, a string that starts with "abc". ( |
|||
|
|
|
You can try this code:
|
|||
|
|
|
Bear in mind that, if you're going to be doing a lot of lookups, there are STL containers that are better for that. I don't know what your application is, but associative containers like std::map may be worth considering. std::vector is the container of choice unless you have a reason for another, and lookups by value can be such a reason. |
|||
|
|
The brute force approach (again presuming int as the stored type):
If you're doing many lookups in large vectors, this can be inefficient. You may want to cache your results in order to avoid doing the same search twice (assumes int as the stored type):
|
|||||
|