-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlistaOrdenadaSentilena.cpp
141 lines (128 loc) · 2.57 KB
/
listaOrdenadaSentilena.cpp
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include <iostream>
#include <stdlib.h>
using namespace std;
typedef int TIPOCHAVE;
typedef struct estrutura{
TIPOCHAVE chave;
int info;
estrutura *prox;
}NO;
typedef struct{
NO *inicio;
NO *sentinela;
}LISTA;
void inicializar(LISTA *li){
li->sentinela = (NO*)malloc(sizeof(NO));
li->inicio = li->sentinela;
}
void mostrar(LISTA li){ //antiga
NO *p = li.inicio;
cout << "\nInicio->[";
while(p != li.sentinela){
cout << p->chave << " - " <<p->info;
p = p->prox;
if(p != li.sentinela)
cout << ", ";
}
cout << "]\n";
}
NO* ultimoElemento(LISTA li){
NO *p = li.inicio;
if(p == li.sentinela){
cout << "\nLista Vazia.\n";
return NULL;
}
while(p->prox != li.sentinela){
p = p->prox;
cout << "\nUltimo: " << p->chave << "/" << p->info;
return p;
}
}
NO* enesimoElemento(LISTA li, int n){
NO *p = li.inicio;
int i = 1;
if(p == li.sentinela){
cout << "\nLista Vazia.";
return NULL;
}
while(p->prox != li.sentinela && i < n){
p = p->prox;
i++;
}
if(i != n){
cout << "\nNao encontrado";
return NULL;
}
cout << "\nEnesimo: " << p->chave << "/" << p->info;
return p;
}
int quantidadeElementos(LISTA li){
NO *p = li.inicio;
int count = 0;
while(p != li.sentinela){
count++;
p = p->prox;
}
return count;
}
NO* buscaSeqOrd(TIPOCHAVE ch, LISTA li, NO **ant){
NO *p = li.inicio;
*ant = NULL;
li.sentinela->chave = ch;
while(p){
*ant = p;
p = p->prox;
}
if(p != li.sentinela && p->chave == ch)
return p;
return NULL;
}
int inserirElemListaOrd(TIPOCHAVE ch, int novaInfo, LISTA *li){
NO *novo;
NO *ant;
novo = buscaSeqOrd(ch, *li, &ant);
if(novo){
cout << "\nCHAVE " << ch << "JA EXISTENTE.";
return false;
}
novo = (NO*)malloc(sizeof(NO));
novo->chave = ch;
novo->info = novaInfo;
if(li->inicio == li->sentinela){
li->inicio = novo;
novo->prox = li->sentinela;
}else{
if(ant == NULL){
novo->prox = li->inicio;
li->inicio = novo;
}else{
novo->prox = ant->prox;
ant->prox = novo;
}
}
return true;
}
int excluirElemento(LISTA *li, TIPOCHAVE ch){
No *ant, *p;
p = buscaSeqOrd(ch, *li, &ant);
if(!p){
cout << "\nElemento nao se encontra na lista.\n";
return false;
}else if(!ant){
li->inicio = p->prox;
}else{
ant->prox = p->prox;
}
p->prox = NULL;
free(p);
return true;
}
int main(){
LISTA lista;
inicializar(&lista);
inserirElemListaOrd(100, 1, &lista);
inserirElemListaOrd(50, 11, &lista);
inserirElemListaOrd(150, 2, &lista);
mostrar(lista);
return 0;
}