blob: 79ccc64788730a4f5866cb0950e28d9d9fadb22e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* File : example.h */
#include <map>
#include <string>
template<class Key, class Value>
std::map<Key,Value> half_map(const std::map<Key,Value>& v) {
typedef typename std::map<Key,Value>::const_iterator iter;
std::map<Key,Value> w;
for (iter i = v.begin(); i != v.end(); ++i) {
w[i->first] = (i->second)/2;
}
return w;
}
|