-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLista_encadeada.c
47 lines (41 loc) · 892 Bytes
/
Lista_encadeada.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
#include <stdio.h>
#include <stdlib.h>
struct No {
int dados;
struct No *prox;
};
struct No *cabeca = NULL;
void insira_no_começo(int x) {
struct No *novo_No = (struct No*) malloc(sizeof(struct No));
novo_No->dados = x;
novo_No->prox = cabeca;
cabeca = novo_No;
}
void insira_no_final(int x) {
struct No *novo_No = (struct No*) malloc(sizeof(struct No));
novo_No->dados = x;
novo_No->prox = NULL;
if (cabeca == NULL) {
cabeca = novo_No;
return;
}
struct No *ptr = cabeca;
while (ptr->prox != NULL) {
ptr = ptr->prox;
}
ptr->prox = novo_No;
}
void print_lista() {
struct No *ptr = cabeca;
while (ptr != NULL) {
printf("%d ", ptr->dados);
ptr = ptr->prox;
}
printf("\n");
}
int main() {
insira_no_começo(4);
insira_no_final(5);
print_lista();
return 0;
}