Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
Loading...
Searching...
No Matches
MinHeapNode Struct Reference
Collaboration diagram for MinHeapNode:
[legend]

Public Member Functions

 MinHeapNode (char data, unsigned freq)
 

Public Attributes

char data
 
unsigned freq
 
MinHeapNodeleft
 
MinHeapNoderight
 

Constructor & Destructor Documentation

◆ MinHeapNode()

MinHeapNode::MinHeapNode ( char data,
unsigned freq )
inline
19 {
20 left = right = NULL;
21 this->data = data;
22 this->freq = freq;
23 }

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