|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Node heap without virtual destructor. More...
#include <tpl_binHeap.H>
Public Types | |
| using | Node = BinHeapNode< Key > |
| El tipo de nodo del heap. | |
Public Types inherited from Aleph::GenBinHeap< NodeType, Key, Compare > | |
| using | Node = NodeType< Key > |
Node heap without virtual destructor.
The BinHeap class instruments a node heap. This team doesn't is implemented by array, but with a binary tree. This provides the great advantage of being highly dynamic. The memory used is therefore proportional to the amount of nodes of the HEAP.
| Key | the key that each node keeps. |
| Compare | the criterion of comparison between the keys of the Nodes; by default is the relationship "less than". |
Definition at line 1003 of file tpl_binHeap.H.
| using Aleph::BinHeap< Key, Compare >::Node = BinHeapNode<Key> |
El tipo de nodo del heap.
Definition at line 1006 of file tpl_binHeap.H.