-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path63.cpp
40 lines (36 loc) · 918 Bytes
/
63.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <vector>
#include <string>
#include <string.h>
using std::cout;
using std::endl;
using std::vector;
using std::string;
template <typename T>
int count(vector<T> &container, T value){
int num = 0;
for(auto i : container){
if(i == value)
++num;
}
return num;
}
template <>
int count(vector<const char*>& container, const char* value){
int num = 0;
for(const auto& i : container){
if(strcmp(i, value) == 0)
++num;
}
return num;
}
int main(){
vector<int> vi{1,1,1,2,3,4,8,94};
vector<double> vd{1.2,1.1,1.1,1,2,5};
vector<string> vs{"a", "abc", "abc", "d"};
vector<const char*> vs2{"a", "abc", "abc", "d"};
cout << "vi " << count(vi, 1) << endl;
cout << "vd " << count(vd, 2.8) << endl;
cout << "vs " << count(vs, string("abc")) << endl;
cout << "vs2 " << count(vs2, "abc") << endl;
}