Question: std::string FileName = - 1 : unsigned int mFrequency Table [ 2 5 6 ] = [ 1 ] ; std::vector LeafList; HuffNode
std::string FileName: unsigned int mFrequency Table ; std::vector LeafList; HuffNode Root reinterpretcast; std::vector mEncoding Table;
Huffmanconst std::string& fileName: Implement this method
Huffman
: Implement this method
void GenerateFrequency Table
TODO: Implement this method
void GenerateLeafList
TODO: Implement this method
void GenerateTree
TODO: Implement this method
void GenerateEncoding Table
TODO: Implement this method
void ClearTree
TODO: Implement this method
void ClearTree HuffNode curr
TODO: Implement this method
void Compress const charoutputFile TODO: Implement this method
void Decompress const charoutputFile TODO: Implement this method
Huffman Constructor
Assign the appropriate data member the value from the parameter
Zero out the entire frequency table
Set the root to a value that indicates the tree is currently empty
GenerateFrequency Table
Open the file in binary mode, using a std::ifstream
Read the file one byte at a time, and increment the corresponding index The indices of the frequency table line up with the ASCII values
Close the file when complete
GenerateLeafList
Iterate through the frequency table and dynamically create a leaf node for each non frequency
Add each node to the mLeafList vector
Generate Tree
Create the priority queue
This will be storing HuffNode in a vector, and uses HuffCompare for the comparator
Populate the priority queue with the data in the leaf list
Generate the tree with the following algorithm
While the queue has more than node
Store the top two nodes into some temporary pointers and pop them
Create a new parent node with first node as the left child, and second node as the right child
Set the parent's value to and the frequency to the sum of its two children's frequencies
Set the first and sexond nodes parent to the newly created mode
Stunt the new node into the queue
Set the root data membes
ClearTree
Perform a postorder traversal to delete all of the nodes
Same as Clear from the BST
Destructor
Clean up all of the dynamically allocated memory Theres a method to help with this
GenerateEncoding Table
Go through all of the leaf nodes and generate the bit codes
This is done by traversing up the tree from each leaf node with a temporary pointer, and storing the direction in the corresponding vector
Each index of the encoding table aligns to an ASCII value
As you move up push a to the vector if you passed through a left child connection, and a if you passed through a right connection
Once you hit the root node, reverse the values in the vector
Compress
In this method, mFileName is the file to compress, and the parameter is the name of the file to
write to
Create the frequency table, leaf list, tree, and encoding table by calling the existing methods in this order
Create a BitOfstream and supply it the Huffman header
Open the input file in binary mode with a std: ifstream
Compress the ble For each byte in the original file, write out the corresponding bit code from the encoding table
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
