Go to the documentation of this file.
39 :
Base(), maxCodeLength(max_code_length)
42 "Code length cannot surpass its underlying container");
53 std::unique_ptr<Huffman::Node>
58 while (
trees.size() > 1) {
65 Node* parent =
new Node(left, right);
73 return std::unique_ptr<Node>(root);
96 Code right_code = current_code;
97 right_code.
code = (right_code.
code << 1) + 1;
101 Code left_code = current_code;
102 left_code.
code = left_code.
code << 1;
std::priority_queue< Node *, std::vector< Node * >, NodeComparator > trees
const unsigned maxCodeLength
Maximum number of bits in a codeword.
const Node * getLeftSubTree() const
void generateCodeMaps()
Generation of the code maps.
uint64_t code
Only the LSB of the code are relevant.
void sample(uint64_t value, uint64_t frequency)
Inserts the value-frequency pair in the tree.
uint64_t getValue() const
Get the leaf's value.
std::unique_ptr< Node > buildTree()
Build a Huffman tree using the values and their respective frequencies, which have been informed thro...
uint64_t decode(const uint64_t code) const override
Decode a value.
std::map< uint64_t, Code > valueToCode
Table containing the codewords and their respective lengths.
const Node * getRightSubTree() const
Huffman(uint64_t max_code_length)
bool isLeaf() const
Determine if the node is a leaf node by checking if it does not have sub-trees.
unsigned length
Number of bits in the code.
void generateCodes(const Node *node, const Code ¤t_code)
Recursive function that generates the huffman codes based on the tree provided.
#define fatal_if(cond,...)
Conditional fatal macro that checks the supplied condition and only causes a fatal error if the condi...
std::map< uint64_t, uint64_t > codeToValue
Code encode(const uint64_t val) const override
The function responsible for the generation of the alternative value.
Node for the Huffman tree.
Generated on Tue Mar 23 2021 19:41:27 for gem5 by doxygen 1.8.17