-
Notifications
You must be signed in to change notification settings - Fork 0
/
popular.cpp
100 lines (79 loc) · 2.81 KB
/
popular.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#include <bits/stdc++.h>
#include "trie/trie_data_base.h"
using namespace std;
int main(int argc, char const *argv[])
{
triedb tdb;
//ENTIDADES
//Preencher Produtore;
element Produtor("Produtor");
Produtor.push_attribute("nome");
Produtor.push_attribute("telefone");
tdb.insert_random_rows(Produtor);
//Preencher Banda;
element Banda("Banda");
Banda.push_attribute("alcunha");
tdb.insert_random_rows(Banda);
//Preencher Endereco;
element Endereco("Endereco");
Endereco.push_attribute("telefone");
Endereco.push_attribute("rua");
Endereco.push_attribute("numero");
tdb.insert_random_rows(Endereco);
//Preencher Instrumento;
element Instrumento("Instrumento");
Instrumento.push_attribute("nome");
tdb.insert_random_rows(Instrumento);
//Preencher Musico;
element Musico("Musico");
Musico.push_attribute("nome");
Musico.push_attribute("idade");
Musico.push_attribute("sexo");
Musico.push_attribute("funcao");
tdb.insert_random_rows(Musico);
//Preencher Artista;
element Artista("Artista");
Artista.push_attribute("eh_banda");
tdb.insert_random_rows(Artista);
//Preencher Disco;
element Disco("Disco");
Disco.push_attribute("data");
Disco.push_attribute("formato");
Disco.push_attribute("titulo");
Disco.push_attribute("duracao");
Disco.push_attribute("id_Produtor");
Disco.push_attribute("id_Artista");
tdb.insert_random_rows(Disco);
//Preencher Musica;
element Musica("Musica");
Musica.push_attribute("genero");
Musica.push_attribute("duracao");
tdb.insert_random_rows(Musica);
//Relações N:N
//Preencher Repertorio
element Repertorio("Repertorio");
Repertorio.push_attribute("id_Musica");
Repertorio.push_attribute("id_Disco");
tdb.insert_random_rows(Repertorio);
//Preencher Autoria
element Autoria("Autoria");
Autoria.push_attribute("id_Musica");
Autoria.push_attribute("id_Artista");
tdb.insert_random_rows(Autoria);
//Preencher Participa
element Participa("Participa");
Participa.push_attribute("id_Artista_1");
Participa.push_attribute("id_Artista_2");
tdb.insert_random_rows(Participa);
//Preencher Mora
element Mora("Mora");
Mora.push_attribute("id_Musico");
Mora.push_attribute("id_Endereco");
tdb.insert_random_rows(Mora);
//Preencher Toca
element Toca("Toca");
Toca.push_attribute("id_Musico");
Toca.push_attribute("id_Instrumento");
tdb.insert_random_rows(Toca);
return 0;
}