LZW Compressor
 All Classes Files Functions Variables Typedefs
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 58 of file lzw_v5.cpp.

Constructor & Destructor Documentation

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

Default constructor.

Parameters
cbyte that the Node will contain

Definition at line 64 of file lzw_v5.cpp.

64  : first(globals::dms), c(c), left(globals::dms), right(globals::dms)
65  {
66  }

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