-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunordered_map_test.cpp
57 lines (41 loc) · 1.51 KB
/
unordered_map_test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Example program
#include <iostream>
#include <string>
#include <unordered_map>
#include <cstdint>
struct Foo
{
float x;
float y;
float z;
};
// https://stackoverflow.com/questions/25375202/how-to-measure-memory-usage-of-stdunordered-map
int get_mem(std::unordered_map<uint32_t, Foo> mymap){
int size_elements = mymap.size();
std::cout << "sizeof mymap: " << sizeof(mymap) << std::endl;
std::cout << "number of elements: " << mymap.size() << std::endl;
std::cout << "number of buckets: " << mymap.bucket_count() << std::endl;
std::cout << "size of element list: " << mymap.size() * 3*8 << std::endl;
std::cout << "pointers to next element" << mymap.size() * sizeof(void*) << std::endl;
std::cout << sizeof(void*)<< std::endl;
std::cout << "sizeof hash table buckets: " << mymap.bucket_count() * (sizeof(size_t) + sizeof(void*)) << std::endl;
std::cout << (sizeof(size_t) + sizeof(void*)) << std::endl;
return sizeof(mymap);
}
int32_t main(int32_t argc, char** argv)
{
std::unordered_map<uint32_t, Foo> mapNoReserve;
std::unordered_map<uint32_t, Foo> mapReserve;
// --> Snapshot A
mapReserve.reserve(1010);
std::cout << "teste" << get_mem(mapReserve)<< std::endl;
// --> Snapshot B
for(uint32_t i = 0; i < 100; ++i)
{
mapNoReserve.insert(std::make_pair(i, Foo()));
mapReserve.insert(std::make_pair(i, Foo()));
}
std::cout << "teste" << get_mem(mapReserve)<< std::endl;
// -> Snapshot C
return 0;
}