-
Notifications
You must be signed in to change notification settings - Fork 2
/
Bubblesort.c
56 lines (53 loc) · 1.28 KB
/
Bubblesort.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
//Código por Henrique Felipe (GitHub: HenriqueIni)
//https://www.blogcyberini.com/
#include <stdio.h>
#include <stdlib.h>
//VERSÃO NORMAL SEM OTIMIZAÇÕES
//O(n²) em todos casos
void bubbleSort(int a[], int n) {
int i, j;
for (i = 0; i < n - 1; i++) {
for (j = 0; j < n - i - 1; j++) {
if (a[j] > a[j + 1]) {
int temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
}
}
}
}
//VERSÃO COM OTIMIZAÇÕES
//Melhor caso: O(n)
//Pior caso e caso médio: O(n²)
void bubbleSortOpt(int a[], int n) {
int flag = 1;
int i, j;
for (i = 0; i < n - 1 && flag == 1; i++) {
flag = 0;
for (j = 0; j < n - i - 1; j++) {
if (a[j] > a[j + 1]) {
int temp = a[j];
a[j] = a[j + 1];
a[j + 1] = temp;
flag = 1;
}
}
}
}
void printArray(int a[], int n){
int i;
for(i = 0; i < n; i++){
printf("%d, ", a[i]);
}
printf("\n");
}
//código de testes
int main() {
int c[10] = {10, 8, -7, 210, -1, 0, 30, 9, 6, -300};
bubbleSort(c, 10);
printArray(c, 10);
int d[10] = {10, 8, -7, 210, -1, 0, 30, 9, 6, -300};
bubbleSort(d, 10);
printArray(d, 10);
return 0;
}