Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.3 KB

README.md

File metadata and controls

24 lines (17 loc) · 1.3 KB
User Solution
pliavi Clojure
ihavenonickname Elixir

Silicon Valley

Inicio: 02/04/18 Fim: 09/04/18

Objetivo desse desafio é usar o algoritmo de huffman p/ comprimir strings transformando ascii em binário e criando uma arvore de frequencia.

Input: String(Com apenas letras maiusculas) Output: String(Com apenas 0 e 1s)

Testes

Input:: "AAAAAABCCCCCCDDEEEEE" Output:: "0000000000001100101010101011111111010101010"

Geeks For Geeks - Greedy Algorithms | Set 3 (Huffman Coding) Geeks For Geeks - Huffman Decoding A quick tutorial on generating a huffman tree Techie Delight - Huffman Coding Compression Algorithm