Stars
0
Forks
0
Watchers
0
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
13
commits
Methods to calculate the entropy of a table Symbol/Frequency and a method to calculate the number of bits needed to encode uncompressed Symbols from the table.
fd3c5efView on GitHubMoved everithing that was not table related from HuffTables
70033f7View on GitHubThe tree transforms a string sequence of bits to the correct sequence of symbols.
b3a96c4View on GitHubHuffman tree done, from hash table with Symbol/Frequency it creates a tree and you gan generate the Symbol/Code from it as a hash table also.
cc5e550View on GitHubStarted HuffTree, it will store a list of nodes as a tree a table with the sequences of each symbol and a starting node. The tree will be created from a HashMap, it will have methods to get the symbol/sequence table and one to get the string from a bit sequence.
bf8bf01View on GitHub