Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
Loading...
Searching...
No Matches
Aleph::BinHeapNodeVtl< Key > Class Template Reference

#include <tpl_binHeap.H>

Inheritance diagram for Aleph::BinHeapNodeVtl< Key >:
[legend]
Collaboration diagram for Aleph::BinHeapNodeVtl< Key >:
[legend]

Public Types

typedef Key key_type
 
typedef Key Key_Type
 

Public Member Functions

Key & get_key () noexcept
 
const Key & get_key () const noexcept
 
BinHeapNodeVtl *& getL () noexcept
 
BinHeapNodeVtl *& getR () noexcept
 
const BinHeapNodeVtlgetL () const noexcept
 
const BinHeapNodeVtlgetR () const noexcept
 
 BinHeapNodeVtl (const Key &k)
 
 BinHeapNodeVtl (Key &&k) noexcept
 
 BinHeapNodeVtl (const BinHeapNode_Data &control_data, const Key &k)
 
 BinHeapNodeVtl (const BinHeapNodeVtl &node)
 
 BinHeapNodeVtl (BinHeapNodeVtl &&node)
 
 BinHeapNodeVtl (const BinHeapNode_Data &control_data) noexcept
 
 BinHeapNodeVtl ()
 
void reset () noexcept
 
virtual ~BinHeapNodeVtl ()
 
- Public Member Functions inherited from Aleph::BinHeapNode_Data
 BinHeapNode_Data () noexcept
 
BinHeapNode_Data *& getU () noexcept
 
Control_Fieldsget_control_fields () noexcept
 
void reset () noexcept
 

Static Public Member Functions

static BinHeapNodeVtlkey_to_node (Key &__key) noexcept
 

Static Public Attributes

static const size_t MaxHeight = 64
 
static BinHeapNodeVtl *const NullPtr = nullptr
 

Private Attributes

Key key = Key()
 
BinHeapNodeVtllLink
 
BinHeapNodeVtlrLink
 

Detailed Description

template<typename Key>
class Aleph::BinHeapNodeVtl< Key >

Definition at line 139 of file tpl_binHeap.H.

Member Typedef Documentation

◆ key_type

template<typename Key >
typedef Key Aleph::BinHeapNodeVtl< Key >::key_type

Definition at line 139 of file tpl_binHeap.H.

◆ Key_Type

template<typename Key >
typedef Key Aleph::BinHeapNodeVtl< Key >::Key_Type

Definition at line 139 of file tpl_binHeap.H.

Constructor & Destructor Documentation

◆ BinHeapNodeVtl() [1/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( const Key &  k)
inline

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [2/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( Key &&  k)
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [3/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( const BinHeapNode_Data control_data,
const Key &  k 
)
inline

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [4/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( const BinHeapNodeVtl< Key > &  node)
inline

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [5/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( BinHeapNodeVtl< Key > &&  node)
inline

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [6/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( const BinHeapNode_Data control_data)
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ BinHeapNodeVtl() [7/7]

template<typename Key >
Aleph::BinHeapNodeVtl< Key >::BinHeapNodeVtl ( )
inline

Definition at line 139 of file tpl_binHeap.H.

◆ ~BinHeapNodeVtl()

template<typename Key >
virtual Aleph::BinHeapNodeVtl< Key >::~BinHeapNodeVtl ( )
inlinevirtual

Definition at line 139 of file tpl_binHeap.H.

Member Function Documentation

◆ get_key() [1/2]

template<typename Key >
const Key & Aleph::BinHeapNodeVtl< Key >::get_key ( ) const
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ get_key() [2/2]

template<typename Key >
Key & Aleph::BinHeapNodeVtl< Key >::get_key ( )
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ getL() [1/2]

template<typename Key >
const BinHeapNodeVtl * Aleph::BinHeapNodeVtl< Key >::getL ( ) const
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ getL() [2/2]

template<typename Key >
BinHeapNodeVtl *& Aleph::BinHeapNodeVtl< Key >::getL ( )
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ getR() [1/2]

template<typename Key >
const BinHeapNodeVtl * Aleph::BinHeapNodeVtl< Key >::getR ( ) const
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ getR() [2/2]

template<typename Key >
BinHeapNodeVtl *& Aleph::BinHeapNodeVtl< Key >::getR ( )
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ key_to_node()

template<typename Key >
static BinHeapNodeVtl * Aleph::BinHeapNodeVtl< Key >::key_to_node ( Key &  __key)
inlinestaticnoexcept

Definition at line 139 of file tpl_binHeap.H.

◆ reset()

template<typename Key >
void Aleph::BinHeapNodeVtl< Key >::reset ( )
inlinenoexcept

Definition at line 139 of file tpl_binHeap.H.

Member Data Documentation

◆ key

template<typename Key >
Key Aleph::BinHeapNodeVtl< Key >::key = Key()
private

Definition at line 139 of file tpl_binHeap.H.

◆ lLink

template<typename Key >
BinHeapNodeVtl* Aleph::BinHeapNodeVtl< Key >::lLink
private

Definition at line 139 of file tpl_binHeap.H.

◆ MaxHeight

template<typename Key >
const size_t Aleph::BinHeapNodeVtl< Key >::MaxHeight = 64
static

Definition at line 139 of file tpl_binHeap.H.

◆ NullPtr

template<typename Key >
BinHeapNodeVtl< Key > *const Aleph::BinHeapNodeVtl< Key >::NullPtr = nullptr
static

Definition at line 139 of file tpl_binHeap.H.

◆ rLink

template<typename Key >
BinHeapNodeVtl* Aleph::BinHeapNodeVtl< Key >::rLink
private

Definition at line 139 of file tpl_binHeap.H.


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