-
Notifications
You must be signed in to change notification settings - Fork 0
/
Lista.cs
189 lines (152 loc) · 4.52 KB
/
Lista.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Lab_07__Lucas_Braga_
{
class Site
{
public string URL { get; set; }
public Site prox { get; set; }
}
class Lista
{
protected Site Inicio;
protected Site Fim;
protected int Tam;
public Lista()
{
Tam = 0;
Inicio = new Site();
Fim = Inicio;
Inicio.prox = null;
}
public bool Vazia()
{
return Inicio == Fim;
}
public int Tamanho()
{
return Tam;
}
public bool ValidaExistencia(string URL)
{
bool v = false;
Site temp = Inicio.prox;
while (temp != null)
{
if (URL == temp.URL)
{
v = true;
break;
}
temp = temp.prox;
}
return v;
}
public void CadastraSite(string URL)
{
if (!ValidaExistencia(URL))
{
Site temp = new Site();
temp.URL = URL;
temp.prox = null;
Fim.prox = temp;
Fim = temp;
Tam++;
}
else
{
Console.WriteLine("Site ja Cadastrado!");
}
}
public int Pesquisar(string URL)
{
int cont = 1;
Site temp = Inicio;
//se existir é removido da sua posição original
if (ValidaExistencia(URL))
{
while (temp.prox != null)
{
if (URL == temp.prox.URL)
{
break;
}
else
{
cont++;
temp = temp.prox;
}
}
if (temp.prox.prox == null)
{
Fim = temp;
Fim.prox = null;
}
else
{
temp.prox = temp.prox.prox;
}
}
//fim da remoção
//inserir o Site na primeira posição
Site aux = new Site();
aux.URL = URL;
aux.prox = Inicio.prox;
Inicio.prox = aux;
return cont;
}
public void Listar()
{
Site temp = Inicio.prox;
while (temp != null)
{
Console.WriteLine(temp.URL);
temp = temp.prox;
}
}
}
class Program
{
static void Main(string[] args)
{
Lista list = new Lista();
string opc = "";
string URL = "";
do
{
Console.WriteLine("1 - Cadastrar Site");
Console.WriteLine("2 - Listar Sites cadastrados");
Console.WriteLine("3 - Quantidade de Sites cadastrados");
Console.WriteLine("4 - Pesquisar Site");
Console.WriteLine("5 - Sair");
Console.Write("Opção => ");
opc = Console.ReadLine();
switch (opc)
{
case "1":
Console.Write("Digite a URL: ");
URL = Console.ReadLine();
list.CadastraSite(URL);
break;
case "2":
list.Listar();
break;
case "3":
Console.WriteLine("Quantidade de Sites Cadastrados => " + list.Tamanho());
break;
case "4":
Console.Write("Digite a URL: ");
URL = Console.ReadLine();
Console.WriteLine("quantidade de acessos na list => " + list.Pesquisar(URL)); ;
break;
}
Console.WriteLine("\n\nAperte qualquer tecla para continuar...");
Console.ReadKey();
Console.Clear();
} while (opc != "5");
}
}
}