-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
555 lines (479 loc) · 16.6 KB
/
main.js
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
class Folha {
constructor (vazio, caracter, cont, pai) {
this.vazio = vazio
this.caracter = caracter
this.cont = cont
this.pai = pai
this.encontrado = false
this.trocado = false
}
contagem() {
return this.cont
}
}
class NoIntermediario {
constructor (filho_esquerda, filho_direita, pai) {
this.filho_esquerda = filho_esquerda
this.filho_direita = filho_direita
this.pai = pai
this.trocado = false
}
filhos() {
let str = ''
if (this.filho_esquerda instanceof NoIntermediario) {
str += this.filho_esquerda.filhos()
}
else {
if (!this.filho_esquerda.vazio)
str += this.filho_esquerda.caracter
else
str += ''
}
if (this.filho_direita instanceof NoIntermediario) {
str += this.filho_direita.filhos()
}
else {
if (!this.filho_direita.vazio)
str += this.filho_direita.caracter
else
str += ''
}
return str
}
contagem() {
this.cont = this.filho_esquerda.contagem() + this.filho_direita.contagem()
return this.cont
}
}
let passos = []
let finalizados = [true, true]
function procura(caracter, raiz, caminho) {
if (raiz instanceof NoIntermediario) {
let c = procura(caracter, raiz.filho_esquerda, caminho + '0')
if (c == null)
return procura(caracter, raiz.filho_direita, caminho + '1')
else
return c
}
else {
if (raiz.caracter == caracter) {
return {raiz, caminho}
} else {
return null
}
}
}
function ASCIIFormatter(str) {
while(str.length < 8)
str = '0' + str
return str
}
function procuraFolhaVazia(raiz, caminho) {
if (raiz instanceof NoIntermediario) {
let c = procuraFolhaVazia(raiz.filho_esquerda, caminho + '0')
if (c == null)
return procuraFolhaVazia(raiz.filho_direita, caminho + '1')
else
return c
}
else if (raiz.vazio)
return {raiz, caminho}
}
function insere(folhaVazia, caracter) {
let raiz = new NoIntermediario(folhaVazia, null, folhaVazia.pai)
let folhaNova = new Folha(false, caracter, 1, raiz)
raiz.filho_direita = folhaNova
raiz.filho_esquerda.pai = raiz
return raiz
}
function codificaCaracter(raiz, caracter) {
let obj = procura(caracter, raiz, '');
if (obj == null) {
let folhaVazia = procuraFolhaVazia(raiz, '')
if (folhaVazia.raiz.pai == undefined)
raiz = insere(folhaVazia.raiz, caracter)
else if (folhaVazia.raiz.pai.filho_esquerda.vazio)
folhaVazia.raiz.pai.filho_esquerda = insere(folhaVazia.raiz, caracter);
else
folhaVazia.raiz.pai.filho_direita = insere(folhaVazia.raiz, caracter);
return {
raiz,
'caminho': folhaVazia.caminho + ASCIIFormatter(caracter.charCodeAt(0).toString(2)),
repetido: false
}
} else {
obj.raiz.cont += 1
obj.raiz.encontrado = true
return {
raiz,
'caminho': obj.caminho,
repetido: true
}
}
}
function listaOrdenadaProfundidade(raiz) {
let lista = listaOrdenadaProfundidadeAuxiliar(raiz.filho_esquerda, 0, {})
lista = listaOrdenadaProfundidadeAuxiliar(raiz.filho_direita, 0, lista)
let niveisDecrescente = Object.keys(lista).sort((a, b) => b - a)
let arr = []
for (let i = 0; i < niveisDecrescente.length; i++)
arr = arr.concat(lista[niveisDecrescente[i]])
return arr
}
function listaOrdenadaProfundidadeAuxiliar(raiz, nivel, lista) {
raiz.encontrado = false
raiz.trocado = false
let level = nivel
if (lista[level])
lista[level].push(raiz)
else
lista[level] = [raiz]
if (raiz instanceof Folha)
return lista
else
raiz.contagem()
lista = listaOrdenadaProfundidadeAuxiliar(raiz.filho_esquerda, nivel + 1, lista)
return listaOrdenadaProfundidadeAuxiliar(raiz.filho_direita, nivel + 1, lista)
}
function balanceamento(raiz) {
let lista = listaOrdenadaProfundidade(raiz)
let listaString = []
for (let i = 0; i < lista.length; i++) {
if (lista[i] instanceof Folha)
if (lista[i].caracter != null)
listaString += `${lista[i].caracter}${lista[i].contagem()}`
else
listaString += ` ${lista[i].contagem()}`
else
listaString += `${lista[i].filhos()}${lista[i].contagem()}`
listaString += '; '
}
for (let i = 0; i < lista.length; i++) {
for (let j = lista.length - 1; j > i; j--) {
if (lista[j].cont < lista[i].cont) {
troca(lista[i], lista[j])
let x = ''
let y = ''
if (lista[i] instanceof Folha) {
x = lista[i].caracter
} else {
x = lista[i].contagem()
}
if (lista[j] instanceof Folha) {
y = lista[j].caracter
} else {
y = lista[j].contagem()
}
return {
state: true,
troca: [x, y],
lista: listaString
}
}
}
}
return {
state: false,
lista: listaString
}
}
function troca(obj1, obj2) {
if (obj1.pai.filho_esquerda == obj1) {
if (obj2.pai.filho_esquerda == obj2) {
obj1.pai.filho_esquerda = obj2
obj2.pai.filho_esquerda = obj1
}
else {
obj1.pai.filho_esquerda = obj2
obj2.pai.filho_direita = obj1
}
}
else {
if (obj2.pai.filho_esquerda == obj2) {
obj1.pai.filho_direita = obj2
obj2.pai.filho_esquerda = obj1
}
else {
obj1.pai.filho_direita = obj2
obj2.pai.filho_direita = obj1
}
}
let tmp = obj1.pai
obj1.pai = obj2.pai
obj2.pai = tmp
obj1.trocado = true
obj2.trocado = true
}
function codificaString(str) {
let raiz = new Folha(true, null, 0)
let output = ''
let numeroBitsOriginal = 0
let numeroBitsCompactado = 0
for (let i = 0; i < str.length; i++) {
let tmp = codificaCaracter(raiz, str[i]);
raiz = tmp.raiz
output += tmp.caminho
output += ' '
numeroBitsOriginal += 8
numeroBitsCompactado += tmp.caminho.length
let toPush = {
arvore: 'digraph {' + makeString(raiz) + '}',
insere: str[i],
output: output,
repetido: tmp.repetido,
caminho: tmp.caminho,
numeroBitsOriginal: numeroBitsOriginal,
numeroBitsCompactado: numeroBitsCompactado
}
let bal = balanceamento(raiz)
toPush.lista = bal.lista
passos.push(
toPush
)
while(bal.state) {
let toPush = {
arvore: 'digraph {' + makeString(raiz) + '}',
troca: bal.troca,
output: output,
numeroBitsOriginal: numeroBitsOriginal,
numeroBitsCompactado: numeroBitsCompactado
}
bal = balanceamento(raiz)
toPush.lista = bal.lista
passos.push(toPush)
}
}
return {raiz, output}
}
function decodifica(str) {
str = str.trim()
let raiz = new Folha(true, null, 0)
let output = ''
let no_aux = raiz
let numeroBitsOriginal = 0
let numeroBitsCompactado = 0
while (str.length > 0 || no_aux instanceof Folha) {
if (no_aux instanceof Folha) {
numeroBitsOriginal += 8
let char = ''
if (no_aux.vazio) {
char = String.fromCharCode(parseInt(str.substr(0, 8), 2))
output = output.concat(char)
str = str.substr(8)
numeroBitsCompactado += 8
}
else {
char = no_aux.caracter
output = output.concat(no_aux.caracter)
}
let tmp = codificaCaracter(raiz, char)
raiz = tmp.raiz
let toPush = {
arvore: 'digraph {' + makeString(raiz) + '}',
insere: char,
output: output,
repetido: tmp.repetido,
caminho: tmp.caminho,
numeroBitsOriginal: numeroBitsOriginal,
numeroBitsCompactado: numeroBitsCompactado
}
let bal = balanceamento(raiz)
toPush.lista = bal.lista
passos.push(
toPush
)
while(bal.state) {
toPush = {
arvore: 'digraph {' + makeString(raiz) + '}',
troca: bal.troca,
output: output,
numeroBitsOriginal: numeroBitsOriginal,
numeroBitsCompactado: numeroBitsCompactado
}
bal = balanceamento(raiz)
toPush.lista = bal.lista
passos.push(
toPush
)
}
no_aux = raiz
}
else {
if (str.charAt(0) == '0') {
no_aux = no_aux.filho_esquerda
numeroBitsCompactado += 1
}
else if (str.charAt(0) == '1') {
no_aux = no_aux.filho_direita
numeroBitsCompactado += 1
}
str = str.substr(1)
}
}
return {raiz, output}
}
function showTree(treeId, tree, onFinish) {
d3.select(treeId).graphviz()
.keyMode('title')
.zoom(false)
.fade(false)
.dot(tree)
.render()
.on('end', () => {
let texts = document.querySelectorAll(`${treeId} g > text`)
for (text of texts) {
let str = text.innerHTML.substring(
text.innerHTML.lastIndexOf('{') + 1,
text.innerHTML.lastIndexOf('}')
)
if (str.length > 0)
text.innerHTML = str
}
onFinish();
});
}
function makeString(no) {
let str = ''
str += `\"\"[fillcolor="blue", style="filled"];`
if (no instanceof Folha) {
return ''
}
else {
if (no.filho_esquerda) {
if (no.filho_esquerda instanceof Folha) {
let filhoString = ''
if (no.filho_esquerda.vazio) {
filhoString = '\"\"'
}
else {
if (no.filho_esquerda.caracter == ' ')
filhoString = '\"' + '␣' + no.filho_esquerda.cont + '\"'
else
filhoString = '\"' + no.filho_esquerda.caracter + no.filho_esquerda.cont + '\"'
}
if (no.filho_esquerda.encontrado)
str += `${filhoString}[fillcolor="yellow", style="filled"];`
if (no.filho_esquerda.trocado)
str += `${filhoString}[fillcolor="red", style="filled"];`
str += '\"' + no.filhos() + '{' + no.contagem().toString() + '}' + '\"' + '->' + filhoString + '[label=0];'
}
else {
let filhoString = '\"' + no.filho_esquerda.filhos() + '{' + no.filho_esquerda.contagem() + '}' + '\"'
if (no.filho_esquerda.trocado)
str += `${filhoString}[fillcolor="red", style="filled"];`
str += '\"' + no.filhos() + '{' + no.contagem().toString() + '}' + '\"' + '->'
str += filhoString + '[label=0];'
str += makeString(no.filho_esquerda)
}
}
if (no.filho_direita) {
if (no.filho_direita instanceof Folha) {
let filhoString
if (no.filho_direita.vazio) {
filhoString = '\"\"'
}
else {
if (no.filho_direita.caracter == ' ')
filhoString = '\"' + '␣' + no.filho_direita.cont + '\"'
else
filhoString = '\"' + no.filho_direita.caracter + no.filho_direita.cont + '\"'
}
if (no.filho_direita.encontrado)
str += `${filhoString}[fillcolor="yellow", style="filled"];`
if (no.filho_direita.trocado)
str += `${filhoString}[fillcolor="red", style="filled"];`
str += '\"' + no.filhos() + '{' + no.contagem().toString() + '}' + '\"' + '->' + filhoString + '[label=1];'
}
else {
let filhoString = '\"' + no.filho_direita.filhos() + '{' + no.filho_direita.contagem() + '}' + '\"'
if (no.filho_direita.trocado)
str += `${filhoString}[fillcolor="red", style="filled"];`
str += '\"' + no.filhos() + '{' + no.contagem().toString() + '}' + '\"' + '->'
str += filhoString + '[label=1];'
str += makeString(no.filho_direita)
}
}
}
return str
}
function buttonCodificar() {
let str = document.querySelector('#input-string').value
cleanAll()
codificaString(str)
if (passos.length > 0)
document.getElementById('nextStep').disabled = false
}
function buttonDecodificar() {
let str = document.querySelector('#input-string').value
cleanAll()
decodifica(str)
if (passos.length > 0)
document.getElementById('nextStep').disabled = false
}
let stepIndex = -1
function renderStep() {
disableButtons()
if (passos[stepIndex].insere && !passos[stepIndex].repetido)
if (passos[stepIndex].insere == ' ')
document.getElementById('operacao').innerText = `Insere ␣`
else
document.getElementById('operacao').innerText = `Insere ${passos[stepIndex].insere}`
else if (passos[stepIndex].insere && passos[stepIndex].repetido)
document.getElementById('operacao').innerText = `Encontrado ${passos[stepIndex].insere} (${passos[stepIndex].caminho})`
else if (passos[stepIndex].troca)
document.getElementById('operacao').innerText = `Troca ${passos[stepIndex].troca[0]} <-> ${passos[stepIndex].troca[1]}`
document.getElementById('taxa-compactacao').innerText = `${Number(passos[stepIndex].numeroBitsOriginal / passos[stepIndex].numeroBitsCompactado).toFixed(3)} (${passos[stepIndex].numeroBitsOriginal}:${passos[stepIndex].numeroBitsCompactado})`
document.getElementById('string-codificada').innerText = passos[stepIndex].output
cleanTrees()
finalizados = [false, false]
if (stepIndex - 1 >= 0) {
showTree('#tree-prev-step', passos[stepIndex - 1].arvore, () => {
finalizados[0] = true
document.querySelector('#lista-profundidade-before').innerHTML = passos[stepIndex - 1].lista
})
} else
finalizados[0] = true
showTree('#tree', passos[stepIndex].arvore, () => {
finalizados[1] = true
document.querySelector('#lista-profundidade-after').innerHTML = passos[stepIndex].lista
if (stepIndex == passos.length - 1)
document.getElementById('nextStep').disabled = true
else
document.getElementById('nextStep').disabled = false
if (stepIndex > 0)
document.getElementById('prevStep').disabled = false
else
document.getElementById('prevStep').disabled = true
})
}
function nextStep() {
if (stepIndex < passos.length && finalizados[0] && finalizados[1]) {
stepIndex += 1
renderStep()
}
}
function prevStep() {
if (stepIndex > 0 && finalizados[0] && finalizados[1]) {
stepIndex -= 1
renderStep()
}
}
function disableButtons() {
document.getElementById('nextStep').disabled = true
document.getElementById('prevStep').disabled = true
}
function cleanTrees() {
document.getElementById('tree').innerHTML = ''
document.getElementById('tree-prev-step').innerHTML = ''
}
function cleanAll() {
cleanTrees()
document.getElementById('operacao').innerHTML = ''
document.getElementById('string-codificada').innerText = ''
document.getElementById('taxa-compactacao').innerText = ''
document.querySelector('#lista-profundidade-before').innerHTML = ''
document.querySelector('#lista-profundidade-after').innerHTML = ''
document.getElementById('prevStep').disabled = true
passos = []
stepIndex = -1
}