-
Notifications
You must be signed in to change notification settings - Fork 1
/
janseisequeroviver.c
229 lines (189 loc) · 4.12 KB
/
janseisequeroviver.c
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
typedef struct lista_adj lista_adj;
typedef struct grafo grafo;
typedef struct fila fila;
#define tammax 300
struct fila
{
int comeco, fim, tam;
int array[tammax];
};
struct lista_adj {
int item;
lista_adj *prox;
};
struct grafo
{
lista_adj * vertices[300];
int visitado[300];
};
void trocar(lista_adj *a, lista_adj *b)
{
lista_adj* temp;
temp=b->prox;
b->prox=a;
a->prox=temp;
}
void ordenar(lista_adj * p)
{
lista_adj* aux1;
lista_adj* aux2;
aux1=p;
aux2=p->prox;
while (aux1!=NULL)
{
while (aux2!=NULL)
{
if(aux1->item>aux2->item)
{
trocar(aux1, aux2);
}
aux2=aux2->prox;
}
aux1=aux1->prox;
if(aux1!=NULL)
{
aux2=aux1->prox;
}
}
}
grafo* criar_grafo()
{
grafo * novo_grafo= malloc(sizeof(grafo));
int i;
for (i=1; i<=300-1; i++)
{
novo_grafo->vertices[i]=NULL;
novo_grafo->visitado[i]=0;
}
return novo_grafo;
}
lista_adj* criar_lista_adj(int item)
{
lista_adj *new_lista_adj = (lista_adj*) malloc(sizeof(lista_adj));
new_lista_adj->item = item;
new_lista_adj->prox = NULL;
return new_lista_adj;
}
void add_ponta(grafo *grafo, int vertice1, int vertice2)
{
lista_adj *vertice = criar_lista_adj(vertice2);
vertice->prox = grafo->vertices[vertice1];
grafo->vertices[vertice1] = vertice;
/* Undirected grafo. Edge to the other direction as well.
vertice = criar_lista_adj(vertice1);
vertice->prox = grafo->vertices[vertice2];
grafo->vertices[vertice2] = vertice;
}*/
}
fila* criarfila()
{
fila* nova_fila = (fila*) malloc(sizeof(fila));
nova_fila->comeco = 0;
nova_fila->tam = 0;
nova_fila->fim = tammax - 1;
return nova_fila;
}
int isFull(fila* f)
{ return (f->tam == tammax); }
int isEmpty(fila* f)
{ return (f->tam == 0); }
void enfileirar(fila* f, int item)
{
if (isFull(f))
return;
f->fim = (f->fim + 1)%tammax;
f->array[f->fim] = item;
f->tam = f->tam + 1;
//printf("%d enfileirarado to f\n", item);
}
int desenfireilar(fila* f)
{
if (isEmpty(f))
return INT_MIN;
int item = f->array[f->comeco];
f->comeco = (f->comeco + 1)%tammax;
f->tam = f->tam - 1;
return item;
}
int comeco(fila* f)
{
if (isEmpty(f))
return INT_MIN;
return f->array[f->comeco];
}
int fim(fila* f)
{
if (isEmpty(f))
return INT_MIN;
return f->array[f->fim];
}
void bfs(grafo *graph, int source)
{
fila *queue = criarfila();
int dequeued;
printf("Iniciando busca em largura a partir de %d\n", source);
lista_adj * lista_adj = graph->vertices[source];
graph->visitado[source] = 1;
enfileirar(queue, source);
while (!isEmpty(queue))
{
dequeued = desenfireilar(queue);
lista_adj = graph->vertices[dequeued];
while (lista_adj != NULL)
{
if (!graph->visitado[lista_adj->item])
{
printf("Iniciando busca em largura a partir de %d", lista_adj->item);
graph->visitado[lista_adj->item] = 1;
enfileirar(queue, lista_adj->item);
}
lista_adj = lista_adj->prox;
}
printf("\n");
}
}
void printrar(int tamanho, grafo *tab)
{
int i;
for ( i = 0; i < tamanho; i++)
{
printf("%d -> ", i);
lista_adj* aux;
aux=tab->vertices[i];
while (aux!=NULL)
{
printf("%d -> ",aux->item);
aux = aux->prox;
}
printf("\\\n");
}
printf("\n");
}
int main()
{
grafo *undirected_graph = criar_grafo();
int qvertices, qarestas, qcasos, o, d, i;
scanf("%d%d%d", &qvertices, &qarestas, &qcasos);
while(qarestas--)
{
scanf("%d%d", &o, &d);
add_ponta(undirected_graph, o, d);
}
for ( i = 0; i < qvertices; i++)
{
if(undirected_graph->vertices[i]!=NULL)
{
ordenar(undirected_graph->vertices[i]);
}
}
while (qcasos--)
{
scanf("%d%d", &o, &d);
printf("%d %d\n", o, d);
bfs(undirected_graph, o);
}
return 0;
}