-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathA1_gabarito.cpp
221 lines (197 loc) · 6.68 KB
/
A1_gabarito.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#include <iostream>
// Questão 1:
struct Node {
int data;
Node *next;
};
void insert(Node *head, int data) {
Node *newNode = (Node*)malloc(sizeof(Node));
newNode->data = data;
newNode->next = nullptr;
Node *current = head;
while (current->next != nullptr) {
current = current->next;
}
current->next = newNode;
}
// Função auxiliar para imprimir a lista (não era necessário)
void printList(Node *head) {
Node *current = head;
while (current != nullptr) {
std::cout << current->data << " ";
current = current->next;
}
std::cout << std::endl;
}
// Questão 2:
void remove(Node *head, int data) {
Node *current = head;
// Ponteiro 'previous' armazena informação do nó anterior no loop,
// para reajustar o ponteiro do nó anterior para que aponte ao próximo nó
// (o next do que foi deletado) corretamente
Node *previous = nullptr;
while (current != nullptr) {
if (current->data == data) {
if (previous == nullptr) {
head = current->next; // Ajuste no caso onde a head da lista é deletada
} else {
previous->next = current->next;
}
free(current);
return;
}
previous = current;
current = current->next;
}
}
// Questão 3:
Node* switchFirstLast(Node *head) {
Node *current = head;
Node *previous = nullptr; // Ponteiro para o nó anterior ao último nó, para reajustar seu ponteiro next
while (current->next != nullptr) {
previous = current;
current = current->next;
}
previous->next = head; // Faz o penúltimo nó apontar para o antigo primeiro
current->next = head->next; // Faz o antigo último nó apontar para o segundo nó
head->next = nullptr; // Faz o antigo primeiro nó apontar para null (já que agora é o último)
return current; // Retorna o antigo último nó como a nova head (já que ele aponta ao segundo nó)
}
// Questão 4:
Node* getIntersection(Node *head1, Node *head2) {
Node *head = (Node*)malloc(sizeof(Node));
Node *current1 = head1;
Node *current2 = head2;
while (current1 != nullptr) {
while (current2 != nullptr) {
if (current1->data == current2->data) {
insert(head, current1->data);
}
current2 = current2->next;
}
current1 = current1->next;
current2 = head2; // Reinicia o ponteiro da lista 2 para seu nó inicial
}
return head->next; // Pois a head é um nó vazio
}
// Questão 5:
// Função auxiliar para deletar a lista e liberar uso de memória
void deleteEntireList(Node *head) {
Node *current = head;
while (current != nullptr) {
Node *next = current->next;
Node *previous = current;
current = next;
free(previous);
}
}
// Função auxiliar para checar, na inserção em uma lista,
// se um nó com o mesmo dado já existe nela
bool insertWithRepetitionCheck(Node *head, int data) {
Node *newNode = (Node*)malloc(sizeof(Node));
newNode->data = data;
newNode->next = nullptr;
Node *current = head;
bool result = false;
while (current->next != nullptr) {
if (current->data == data) { // Checa se já existe um nó com o mesmo dado na lista
result = true;
}
current = current->next;
}
if (current->data == data) { // Checa o último nó da lista, que não é checado no loop while
result = true;
}
current->next = newNode;
return result;
}
// Para checar repetição, cria uma lista auxiliar e insere nela os dados da lista original,
// checando se já existe um nó com o mesmo dado na lista auxiliar para cada inserção
bool CheckRepetition(Node *head) {
Node *dummy = (Node*)malloc(sizeof(Node)); // Cria um nó vazio para ser a head de uma lista auxiliar
Node *current = head;
while (current != nullptr) {
if (insertWithRepetitionCheck(dummy, current->data)) {
deleteEntireList(dummy);
return true;
}
current = current->next;
}
deleteEntireList(dummy);
return false;
}
// Questão EXTRA:
int CheckCycleSize(Node *head) {
Node *dummy = (Node*)malloc(sizeof(Node)); // Cria um nó vazio para ser a head de uma lista auxiliar
Node *current = head;
int repeated_value;
bool repeated = false;
while (current != nullptr) {
if (insertWithRepetitionCheck(dummy, current->data)) {
repeated_value = current->data;
repeated = true;
break;
}
current = current->next;
}
if (repeated == false) {
deleteEntireList(dummy);
return 0;
}
int size = 0;
current = dummy->next;
bool cycle_started = false;
while (current->next != nullptr) {
// Checa se o nó atual é a primeira aparição do valor repetido,
// ou seja, se o ciclo começou
if (current->data == repeated_value) {
cycle_started = true;
}
// Se o ciclo já começou, incrementa o tamanho do ciclo
if (cycle_started) {
size++;
}
current = current->next;
}
deleteEntireList(dummy);
return size;
}
int main(){
Node *head = (Node*)malloc(sizeof(Node));
head->data = 100000;
for (int i = 0; i < 9; i++) {
insert(head, 100001+i);
}
printList(head);
std::cout << "Após deletar o nó com data = 100001:" << std::endl;
remove(head, 100001);
printList(head);
std::cout << "Após trocar o primeiro e o último nó de posição:" << std::endl;
head = switchFirstLast(head);
printList(head);
std::cout << "Após deletar alguns outros nós:" << std::endl;
for (int i = 0; i < 5; i++) {
remove(head, 100000+2*i);
}
printList(head);
std::cout << "Gerando uma outra lista:" << std::endl;
Node *head2 = (Node*)malloc(sizeof(Node));
head2->data = 100000;
for (int i = 0; i < 9; i++) {
insert(head2, 100003+2*i);
}
printList(head2);
std::cout << "Após gerar a interseção das duas listas:" << std::endl;
Node *intersection = getIntersection(head, head2);
printList(intersection);
std::cout << "Após inserir um nó com dado repetido:" << std::endl;
insert(intersection, 100003);
insert(intersection, 100008);
printList(intersection);
std::cout << "Checando se há repetição na lista:" << std::endl;
bool result = CheckRepetition(intersection);
std::cout << result << std::endl;
std::cout << "Checando o tamanho do ciclo na lista:" << std::endl;
int size = CheckCycleSize(intersection);
std::cout << size << std::endl;
}