-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinsertion-sort.c
55 lines (36 loc) · 889 Bytes
/
insertion-sort.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
#include <stdio.h>
#include <stdlib.h>
#define MAX 10
void insertion_sort(int *a);
int main(){
int i, vet[MAX];
// Lê MAX ou 10 valores
// Read MAX or 10 values
for(i = 0; i < MAX; i++){
printf("Digite um valor: ");
scanf("%d", &vet[i]);
}
// Ordena os valores
// Order values
insertion_sort(vet);
// Imprime os valores ordenados
// Print values in order ascendant
printf("nnValores ordenadosn");
for(i = 0; i < MAX; i++){
printf("%dn", vet[i]);
}
system("pause");
return 0;
}
// Função de Ordenação por Inserção
// Insertion sort function
void insertion_sort(int *a){
int i, j, tmp;
for(i = 1; i < MAX; i++) {
tmp = a[i];
for(j = i-1; j >= 0 && tmp < a[j]; j--){
a[j+1] = a[j];
}
a[j+1] = tmp;
}
}