-
Notifications
You must be signed in to change notification settings - Fork 0
/
listaLigadaDinamicaOrdenada.cpp
148 lines (136 loc) · 2.59 KB
/
listaLigadaDinamicaOrdenada.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
142
143
144
145
146
147
148
#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;
}LISTA;
void inicializar(LISTA *li){
li->inicio = NULL;
}
void mostrar(LISTA li){ //antiga
NO *p = li.inicio;
cout << "\nInicio->[";
while(p){
cout << p->chave << " - " <<p->info;
p = p->prox;
if(p)
cout << ", ";
}
cout << "]\n";
}
NO* buscaSeqOrd(TIPOCHAVE ch, LISTA li, NO **ant){
NO *p = li.inicio;
*ant = NULL;
while(p){
if(p->chave >= ch)
break;
*ant = p;
p = p->prox;
}
if(p)
if(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->inicio = novo;
novo->prox = NULL;
}else if(!ant){
novo->prox = li->inicio;
li->inicio = novo;
}else{
novo->prox = ant->prox;
ant->prox = novo;
}
return true;
}
int quantidadeElementos(LISTA li){
NO *p = li.inicio;
int count = 0;
while(p){
count++;
p = p->prox;
}
return count;
}
NO* primeiroElemento(LISTA li){
NO *p = li.inicio;
if(!p)
cout << "\nLista Vazia.\n";
return p;
}
NO* ultimoElemento(LISTA li){
NO *p = li.inicio;
if(!p){
cout << "\nLista Vazia.\n";
return p;
}
while(p){
if(!p->prox)
return p;
p = p->prox;
}
}
NO* enesimoElemento(LISTA li, int n){
NO *p = li.inicio;
int count = 0, tam, i;
if(!p){
cout << "\nLista Vazia.";
return NULL;
}
tam = quantidadeElementos(li);
if(n <= tam){
for(i=1; i<n; i++)
p = p->prox;
return p;
}else{
cout << "\nNao ha elemento em tal posicao.\n";
return NULL;
}
}
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;
NO *enesimo;
inicializar(&lista);
inserirElemListaOrd(100, 1, &lista);
inserirElemListaOrd(50, 11, &lista);
inserirElemListaOrd(150, 2, &lista);
inserirElemListaOrd(130, 3, &lista);
inserirElemListaOrd(125, 2, &lista);
mostrar(lista);
enesimo = enesimoElemento(lista, 1);
cout << "\nEnesimo elemento: " << enesimo->chave;
return 0;
}