-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbolha.c
40 lines (40 loc) · 942 Bytes
/
bolha.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
#include <stdio.h>
#include <stdlib.h>
void bolha(int n, int* v)
{
int i,j,aux,temp;
for(i = n-1;i>=1;i--)
{
for (j=0;j<i;j++)
if (v[j] > v[j+1])
{
temp = v[j];
v[j] = v[j+1];
v[j+1] = temp;
}
for (aux = 0;aux<n;aux++)
printf("%4i",v[aux]);
printf("\n");
}
}
int main()
{
int i,tamanho;
int *v;
srand(time(NULL));
printf("Digite o tamanho do vetor : ");
scanf("%i",&tamanho);
v = (int*)malloc(tamanho*sizeof(int));
for(i = 0;i <tamanho;i++)
v[i] = rand() % 101;
printf("Vetor criado\n\n");
for (i = 0;i < tamanho;i++)
printf("%i ",v[i]);
printf("\n\n\nOrdenando o vetor\n\n");
bolha(tamanho,v);
printf("\n\nVetor ordenado de tamanho %d\n\n",tamanho);
for (i=0;i<tamanho;i++)
printf("%i ",v[i]);
printf("\n");
return 0;
}