Answers for "cpp check if number in vector"

C++
19

if vector contains value c++

#include <algorithm>

if(std::find(v.begin(), v.end(), x) != v.end()) {
    /* v contains x */
} else {
    /* v does not contain x */
}
Posted by: Guest on January-17-2020

Code answers related to "cpp check if number in vector"

Browse Popular Code Answers by Language