-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistastudenti.c
52 lines (50 loc) · 931 Bytes
/
listastudenti.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct studente
{
char nome [30];
char cognome [30];
int matricola;
struct studente *next;
};
typedef struct studente studente;
studente* inserisci(studente *head, studente *p)
{
studente *r=head;/* predecessore del nuovo elemento*/
studente *q=head;/* successore del nuovo elemento*/
while((q!=NULL) && (q->matricola < p->matricola))
{
r=q;
q=q->next;
}
if (r==q)/*l'elemento si deve inserire in testa alla lista*/
{
p->next=head;
head=p;
}
else
{
p->next=q;
r->next=p;
}
return head;
}
int main(void) {
studente *head=NULL;
studente *p;
for (int i = 0; i < 5; i++)
{
p=(studente*)malloc(sizeof(studente));
printf("nome\t");
char* nome = "ciao";
strcpy(p->nome,nome);
printf("cognome\t");
char* cognome = "belli";
strcpy(p->cognome,cognome);
printf("matricola\t");
p->matricola = 12345 - i;
head=inserisci(head, p);/* inseriamo l’elemento nella lista*/
}
return 0;
}