LZW Compressor
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
EncoderDictionary::Node Struct Reference

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.
 

Detailed Description

Binary search tree node.

Definition at line 71 of file lzw_v6.cpp.

Constructor & Destructor Documentation

EncoderDictionary::Node::Node ( char  c)
inlineexplicit

Default constructor.

Parameters
cbyte that the Node will contain

Definition at line 77 of file lzw_v6.cpp.

77  : first(globals::dms), c(c), left(globals::dms), right(globals::dms)
78  {
79  }

The documentation for this struct was generated from the following file: