-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.3.25.c
80 lines (80 loc) · 2 KB
/
7.3.25.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
#include <stdio.h>
#include <stdlib.h>
struct element
{
int i;
struct element *next;
};
int minimumBG(struct element *lista)
{
int min = lista->i;
while(lista != NULL)
{
if(min>lista->i)
{
min = lista->i;
}
lista = lista->next;
}
return min;
}
int minimumZG(struct element *lista)
{
int min = lista->next->i;
while(lista->next != NULL)
{
lista = lista->next;
if(min>lista->i)
{
min = lista->i;
}
}
return min;
}
void wyswietlListeBezGlowy(struct element *lista)
{
struct element *temp=lista;
while(temp!=NULL)
{
printf("%i\n", temp->i);
temp=temp->next;
}
printf("\n");
}
void wyswietlListeZGlowa(struct element *lista)
{
struct element *temp=lista->next;
while(temp!=NULL)
{
printf("%i\n", temp->i);
temp=temp->next;
}
printf("\n");
}
int main()
{
// ====Z GLOWA====
struct element *listazglowa = malloc(sizeof(struct element));
listazglowa->next = malloc(sizeof(struct element));
listazglowa->next->i = 8;
listazglowa->next->next = malloc(sizeof(struct element));
listazglowa->next->next->i = -4;
listazglowa->next->next->next = malloc(sizeof(struct element));
listazglowa->next->next->next->i = -11;
listazglowa->next->next->next->next = NULL;
// ====BEZ GLOWY====
struct element *listabezglowy = malloc(sizeof(struct element));
listabezglowy->i = 3;
listabezglowy->next=malloc(sizeof(struct element));
listabezglowy->next->i = -7;
listabezglowy->next->next=malloc(sizeof(struct element));
listabezglowy->next->next->i = -8;
listabezglowy->next->next->next=NULL;
// ====WYWOLANIE====
wyswietlListeBezGlowy(listabezglowy);
printf("%d", minimumBG(listabezglowy));
printf("\n\n");
wyswietlListeZGlowa(listazglowa);
printf("%d", minimumZG(listazglowa));
return 0;
}