-
Notifications
You must be signed in to change notification settings - Fork 0
/
listarInverso.c
61 lines (48 loc) · 1.2 KB
/
listarInverso.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
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
typedef struct No {
int valor;
struct No *proximo;
} No;
typedef struct {
No *inicio, *fim;
int tamanho;
} Lista;
// Inserir na lista
void inserirNaLista(Lista *lista, int valor) {
No *novo = (No*)malloc(sizeof(No)); // Cria um novo Nó
novo->valor = valor; // O novo nó recebe um valor
if (lista->inicio == NULL) { // Aqui, a lista está vazia!
novo->proximo = NULL;
lista->inicio = novo;
lista->fim = novo;
} else { // Aqui, a lista não está vazia!
novo->proximo = lista->inicio;
lista->inicio = novo;
}
lista->tamanho++;
}
// Imprimir o tamanho da lista
void imprimirListaInverso(Lista *lista) {
No *inicio = lista->inicio;
// imprimindo os valores da 1° lista
while(inicio != NULL) {
printf("%d ", inicio->valor);
inicio = inicio->proximo;
}
}
int main() {
Lista lista; // Criando uma lista
int valor;
// Inicializando as listas
lista.inicio = NULL;
lista.fim = NULL;
lista.tamanho = 0;
while(valor != -1) {
scanf("%d", &valor); // Receber os valores
if (valor != -1) inserirNaLista(&lista, valor); // Inserir na lista
}
if (valor == -1) imprimirListaInverso(&lista); // Imprimir resultados
return 0;
}