Internal struct representing nodes of the huffman code tree.
Definition at line 131 of file huffman.hpp.
#include <huffman.hpp>
Public Field Index: | |
Node * | left |
The left child node. | |
Node * | right |
The right child node. | |
uint8_t | symbol |
Public Method Index: | |
Node () | |
Constructor. | |
Node* left |
The left child node.
Definition at line 133 of file huffman.hpp.
Node* right |
The right child node.
Definition at line 134 of file huffman.hpp.
uint8_t symbol |
If this is a leaf node (neither left nor right are set, then then this is the symbol found.
Definition at line 135 of file huffman.hpp.
|
inline |
Constructor.
Definition at line 139 of file huffman.hpp.