-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArvB.h
49 lines (34 loc) · 1.05 KB
/
ArvB.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
#ifndef ArvB_H_INCLUDED
#define ArvB_H_INCLUDED
#include "NoArvB.h"
#include "Tabela.h"
using namespace std;
class ArvB
{
public:
ArvB(int m);
~ArvB();
bool vazia(); // verifica se a �rvore est� vazia
NoArvB* busca(int chave, Tabela * tabela);
void insere(int chave, Tabela * tabela);
void imprime(Tabela * tabela);
void imprimeArquivo(string filename);
int getM();
int getN();
int getComparacoes();
// void preencheABB(ArvB *a, int p, int q);
//NoArvB* auxPreencheABB(NoArvB *a, int p, int q);
private:
NoArvB* raiz; // ponteiro para o No raiz da �rvore
int m;//grau minimo
NoArvB* auxBusca(NoArvB *p, int chave, Tabela * tabela);
NoArvB* auxInsere(NoArvB *p, int chave, Tabela * tabela);
void auxImprime(NoArvB* p, Tabela * tabela);
void auxImprimeArquivo(NoArvB* p, ofstream &output);
NoArvB* libera(NoArvB *p);
int n;
void insereComEspaco(NoArvB *p, int chave, Tabela * tabela);
NoArvB * cisao(NoArvB * p);
int comparacoes;
};
#endif // ArvB_H_INCLUDED