-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.h
37 lines (31 loc) · 824 Bytes
/
Index.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
#ifndef INDEX_H
#define INDEX_H
/**
* Struct utilizada para organizar os índices na árvore
* para que possam ser retirados por níveis
*/
struct Index {
std::string name[100];
int position;
//Define os operadores para poder usar na Avl
Index() {
comando[0] = '\0';
for(int i=1; i<100; i++) {
comando[i] = ' ';
}
posicao = 0;
}
bool operator==(const Index& rhs) const {
if (strcmp(comando, rhs.comando) == 0) return true;
return false;
}
bool operator<(const Index& rhs) const {
if (strcmp(comando, rhs.comando) < 0) return true;
return false;
}
bool operator>(const Index& rhs) const {
if (strcmp(comando, rhs.comando) > 0) return true;
return false;
}
};
#endif /* INDEX_H */