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

#include <tpl_binNode.H>

Inheritance diagram for Aleph::BinNodeVtl< Key >:
[legend]
Collaboration diagram for Aleph::BinNodeVtl< 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
 
BinNodeVtl *& getL () noexcept
 
BinNodeVtl *& getR () noexcept
 
const BinNodeVtlgetL () const noexcept
 
const BinNodeVtlgetR () const noexcept
 
 BinNodeVtl (const Key &k)
 
 BinNodeVtl (Key &&k) noexcept
 
 BinNodeVtl (const Empty_Node &control_data, const Key &k)
 
 BinNodeVtl (const BinNodeVtl &node)
 
 BinNodeVtl (BinNodeVtl &&node)
 
 BinNodeVtl (const Empty_Node &control_data) noexcept
 
 BinNodeVtl ()
 
void reset () noexcept
 
virtual ~BinNodeVtl ()
 
- Public Member Functions inherited from Aleph::Empty_Node
 Empty_Node ()=default
 
 Empty_Node (SentinelCtor) noexcept
 

Static Public Member Functions

static BinNodeVtlkey_to_node (Key &__key) noexcept
 
- Static Public Member Functions inherited from Aleph::Empty_Node
static void reset () noexcept
 
static Empty_Nodeget_data ()
 

Static Public Attributes

static const size_t MaxHeight = 2048
 
static BinNodeVtl *const NullPtr = nullptr
 

Private Attributes

Key key = Key()
 
BinNodeVtllLink
 
BinNodeVtlrLink
 

Detailed Description

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

Definition at line 392 of file tpl_binNode.H.

Member Typedef Documentation

◆ key_type

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

Definition at line 392 of file tpl_binNode.H.

◆ Key_Type

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

Definition at line 392 of file tpl_binNode.H.

Constructor & Destructor Documentation

◆ BinNodeVtl() [1/7]

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

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [2/7]

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

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [3/7]

template<typename Key >
Aleph::BinNodeVtl< Key >::BinNodeVtl ( const Empty_Node control_data,
const Key &  k 
)
inline

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [4/7]

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

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [5/7]

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

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [6/7]

template<typename Key >
Aleph::BinNodeVtl< Key >::BinNodeVtl ( const Empty_Node control_data)
inlinenoexcept

Definition at line 392 of file tpl_binNode.H.

◆ BinNodeVtl() [7/7]

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

Definition at line 392 of file tpl_binNode.H.

◆ ~BinNodeVtl()

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

Definition at line 392 of file tpl_binNode.H.

Member Function Documentation

◆ get_key() [1/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ get_key() [2/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ getL() [1/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ getL() [2/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ getR() [1/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ getR() [2/2]

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

Definition at line 392 of file tpl_binNode.H.

◆ key_to_node()

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

Definition at line 392 of file tpl_binNode.H.

◆ reset()

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

Definition at line 392 of file tpl_binNode.H.

Member Data Documentation

◆ key

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

Definition at line 392 of file tpl_binNode.H.

◆ lLink

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

Definition at line 392 of file tpl_binNode.H.

◆ MaxHeight

template<typename Key >
const size_t Aleph::BinNodeVtl< Key >::MaxHeight = 2048
static

Definition at line 392 of file tpl_binNode.H.

◆ NullPtr

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

Definition at line 392 of file tpl_binNode.H.

◆ rLink

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

Definition at line 392 of file tpl_binNode.H.


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