公告板
版本库
filestore
活动
搜索
登录
Algorithm
/
rundetector
奔跑算法
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
first push
xuepengqiang
2019-12-26
025429cbd5dd3dc6f130b8de07664665b0c4b55a
[Algorithm/rundetector.git]
/
vector_utils.h
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