xuepengqiang
2019-12-26 025429cbd5dd3dc6f130b8de07664665b0c4b55a
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef VECTOR_UTILS_H
#define VECTOR_UTILS_H
#include <iostream>
#include <vector>
using namespace std;
class VectorUtils
{
public:
    bool is_element_in_vector(vector<int> v,int element);
 
};
 
#endif