Algorithms_in_C++
1.0.0
Set of algorithms implemented in C++.
Loading...
Searching...
No Matches
Public Member Functions
|
Public Attributes
|
List of all members
MinHeapNode Struct Reference
Collaboration diagram for MinHeapNode:
This browser is not able to show SVG: try Firefox, Chrome, Safari, or Opera instead.
[
legend
]
Public Member Functions
MinHeapNode
(char data, unsigned freq)
Public Attributes
char
data
unsigned
freq
MinHeapNode
*
left
MinHeapNode
*
right
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:
greedy_algorithms/
huffman.cpp
MinHeapNode
Generated by
1.12.0