This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLista_Ordenacao_21.c
103 lines (94 loc) · 1.76 KB
/
Lista_Ordenacao_21.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
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef struct pessoa{
int matricula;
char nome[30];
float nota;
}pessoa;
void ordena_matricula(pessoa *p);
void ordena_nome(pessoa *p);
void ordena_nota(pessoa *p);
int n;
int main(int argc, char const *argv[])
{
int c;
printf("Quantas pessoas? ");
scanf("%d",&n);
pessoa vetor[n];
for(c=0;c<n;c++){
printf("Dados da pessoa %d\n",c+1);
printf("Matricula: ");
scanf("%d",&vetor[c].matricula);
printf("Nome: ");
scanf("%s",vetor[c].nome);
printf("Nota: ");
scanf("%f",&vetor[c].nota);
}
printf("Ordenar por:\n");
printf("1-Matricula\n2-Nome\n3-Nota\n");
scanf("%d",&c);
switch(c){
case 1:
ordena_matricula(vetor);
break;
case 2:
ordena_nome(vetor);
break;
case 3:
ordena_nota(vetor);
break;
default:
printf("Opçao invalida");
}
for(c=0;c<n;c++){
printf("Dados da pessoa %d\n",c+1);
printf("Matricula: %d\n",vetor[c].matricula);
printf("Nome: %s\n",vetor[c].nome);
printf("Nota: %.2f\n",vetor[c].nota);
}
return 0;
}
void ordena_matricula(pessoa *p){
int c,c2;
pessoa aux;
for(c=0;c<n;c++){
aux= p[c];
c2 = c -1;
while(c2>=0 && p[c2].matricula>aux.matricula){
p[c2+1] = p[c2];
c2--;
}
p[c2+1] = aux;
}
printf("ORDENADO POR MATRICULA\n");
}
void ordena_nome(pessoa *p){
int c,c2;
pessoa aux;
for(c=0;c<n;c++){
aux = p[c];
c2 = c -1;
while(c2>=0 && strcmp(p[c2].nome,aux.nome)>0){
p[c2+1] = p[c2];
c2--;
}
p[c2+1] = aux;
}
printf("ORDENADO POR NOME\n");
}
void ordena_nota(pessoa *p){
int c,c2;
pessoa aux;
for(c=0;c<n;c++){
aux = p[c];
c2 = c -1;
while(c2>=0 && p[c2].nota>aux.nota){
p[c2+1] = p[c2];
c2--;
}
p[c2+1] = aux;
}
printf("ORDENADO POR NOTA\n");
}