-
Notifications
You must be signed in to change notification settings - Fork 0
/
lista_pont_2.cpp
115 lines (97 loc) · 2.12 KB
/
lista_pont_2.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
#include <iostream>
#include <cstdlib>
using namespace std;
struct no{
int valor;
no * proximo;
};
no * inicio = NULL;
void insert(int pos, int novoValor){
no * novoNo = (no * ) malloc(sizeof(no));
novoNo-> valor = novoValor;
if(pos == 0){
if(inicio == NULL){
inicio = novoNo;
inicio->proximo = NULL;
}else{
novoNo->proximo = inicio;
inicio = novoNo;
}
}else{
no * aux = inicio;
for(int i = 0; i < pos-1; i++){
aux = aux->proximo;
}
if(aux->proximo == NULL){
aux->proximo = novoNo;
novoNo->proximo = NULL;
}else{
novoNo->proximo = aux->proximo;
aux->proximo = novoNo;
}
}
}
int element(int pos){
no * aux = inicio;
for(int i = 0; i < pos; i++){
aux = aux->proximo;
}
return aux->valor;
}
int pos(int elemento){
no * aux = inicio;
for(int i = 0; aux != NULL; i++){
if(aux->valor == elemento){
return i;
}
aux = aux->proximo;
}
return -1;
}
void remove(int pos){
no * removido = NULL;
if(pos == 0){
removido = inicio;
if(inicio->proximo == NULL){
inicio = NULL;
}else{
inicio = inicio->proximo;
}
}else{
no * aux = inicio;
for(int i = 0; i < pos-1; i++){
aux = aux->proximo;
}
removido = aux->proximo;
aux->proximo = removido->proximo;
}
free(removido);
}
void imprime(){
for(no * aux = inicio; aux!=NULL; aux=aux->proximo){
cout << aux->valor << " ";
}
cout << endl;
}
int main()
{
for(int i = 0; i < 10; i++){
insert(i, i);
}
imprime();
insert(0, 10);
imprime();
insert(5, 11);
imprime();
insert(2, 12);
imprime();
cout << "Elemento da posição 7: " << element(7) << endl;
cout << "Posição do elemento 8: " << pos(8) << endl;
remove(0);
imprime();
remove(5);
imprime();
remove(10);
imprime();
return 0;
}