-
Notifications
You must be signed in to change notification settings - Fork 8
/
treemap.h
60 lines (51 loc) · 1.21 KB
/
treemap.h
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
58
59
60
#ifndef TREEMAP_H
#define TREEMAP_H
#include <vector>
struct TreeNode;
class wxString;
template<typename _Tp> class TreeMap;
template<>
class TreeMap<int>
{
public:
TreeMap();
~TreeMap();
int Insert(const wxString& key, int value); // returns value
void Shrink();
std::vector<int> GetIdSet(const wxString& key) const;
int GetValue(int id) const; // returns id
private:
TreeNode* m_Root;
};
template<typename _Tp>
class TreeMap
{
public:
// returns the id of the value inserted
int Insert(const wxString& key, const _Tp& value)
{
m_Data.push_back(value);
return m_Tree.Insert(key, m_Data.size() - 1);
}
void Shrink()
{
m_Tree.Shrink();
#if __cplusplus >= 201103L
m_Data.shrink_to_fit();
#else
std::vector<_Tp>(m_Data).swap(m_Data);
#endif
}
std::vector<int> GetIdSet(const wxString& key) const
{
return m_Tree.GetIdSet(key);
}
_Tp& GetValue(int id)
{
return m_Data[id];
}
private:
TreeMap<int> m_Tree;
std::vector<_Tp> m_Data;
};
#endif // TREEMAP_H