LZW Compressor
|
Binary search tree node. More...
Public Member Functions | |
Node (char c) | |
Default constructor. More... | |
Public Attributes | |
CodeType | first |
Code of first child string. | |
char | c |
Byte. | |
CodeType | left |
Code of child node with byte < c . | |
CodeType | right |
Code of child node with byte > c . | |
Binary search tree node.
Definition at line 71 of file lzw_v6.cpp.
|
inlineexplicit |