-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadenasubrutina.txt
79 lines (77 loc) · 1.98 KB
/
cadenasubrutina.txt
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
cada subrutina es una tarea.
void orden()
{
struct datos *aux[100];
struct datos *aux1;
int i;
for (i=0;i<100;i++)
aux[i]=NULL;
f=fopen(archivo,"rb");
i=0;
while(fread(&alumno,sizeof(alumno),1,f)){
aux[i]=(struct datos *)malloc(sizeof (struct datos));
*aux[i]=alumno;
i++;
}
fclose(f);
aux1=(struct datos *)malloc(sizeof (struct datos));
for (i=0;i<100;i++)
{
if(aux[i]==NULL)
i=100;
else
{
if((aux[i+1]!=NULL))
if((aux[i+1]->matricula<aux[i]->matricula) )
{
aux1=aux[i];
aux[i]=aux[i+1];
aux[i+1]=aux1;
i=-1;
}
}
}
cout<<"se ordenaron los datos"<<endl;
f1=fopen(archivo2,"wb");
for(i=0;i<100;i++)
{
if(aux[i]!=NULL)
{
alumno=*aux[i];
fwrite(&alumno,sizeof(alumno),1,f1);
}
else
i=100;
}
fclose(f1);
remove(archivo);
rename(archivo2,archivo);
}
void busca()
{
int reg, lim;
cout<<"Registro a visualizar: "<<endl;
cin>>reg;
f=fopen(archivo,"rb");
fseek (f,sizeof(alumno),SEEK_END);
lim=ftell (f);
getchar();
if((reg)*sizeof(alumno)>=lim)
{
cout<<"no hay tantos registros"<<endl;
getchar();
}
else
{
fseek (f,(reg-1)*sizeof(alumno),SEEK_SET );
fread(&alumno,sizeof(alumno),1,f);
cout<<"matricula\t"<<alumno.matricula<<endl;
cout<<"nombre\t\t"<<alumno.nombre<<endl;
cout<<"apellido\t"<<alumno.apellido<<endl;
cout<<"carrera\t\t"<<alumno.carrera<<endl;
cout<<"edad\t\t"<<alumno.edad<<endl;
cout<<"peso\t\t"<<alumno.peso<<endl<<endl;
getchar();
}
fclose(f);
}