Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
Loading...
Searching...
No Matches
TestSentinelNode< Key > Class Template Reference
Inheritance diagram for TestSentinelNode< Key >:
[legend]
Collaboration diagram for TestSentinelNode< 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
 
TestSentinelNode *& getL () noexcept
 
TestSentinelNode *& getR () noexcept
 
const TestSentinelNodegetL () const noexcept
 
const TestSentinelNodegetR () const noexcept
 
 TestSentinelNode (const Key &k)
 
 TestSentinelNode (Key &&k) noexcept
 
 TestSentinelNode (const SentinelControl &control_data, const Key &k)
 
 TestSentinelNode (const TestSentinelNode &node)
 
 TestSentinelNode (TestSentinelNode &&node)
 
 TestSentinelNode (const SentinelControl &control_data) noexcept
 
 TestSentinelNode ()
 
void reset () noexcept
 
 TestSentinelNode (SentinelCtor)
 

Static Public Member Functions

static TestSentinelNodekey_to_node (Key &__key) noexcept
 

Static Public Attributes

static const size_t MaxHeight = 64
 
static TestSentinelNode *const NullPtr = & TestSentinelNode <Key>::sentinel_node
 
static TestSentinelNode sentinel_node
 

Private Attributes

Key key = Key()
 
TestSentinelNodelLink
 
TestSentinelNoderLink
 

Detailed Description

template<typename Key>
class TestSentinelNode< Key >

Definition at line 70 of file bin-node.cc.

Member Typedef Documentation

◆ key_type

template<typename Key >
typedef Key TestSentinelNode< Key >::key_type

Definition at line 70 of file bin-node.cc.

◆ Key_Type

template<typename Key >
typedef Key TestSentinelNode< Key >::Key_Type

Definition at line 70 of file bin-node.cc.

Constructor & Destructor Documentation

◆ TestSentinelNode() [1/8]

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

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [2/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( Key &&  k)
inlinenoexcept

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [3/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( const SentinelControl &  control_data,
const Key &  k 
)
inline

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [4/8]

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

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [5/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( TestSentinelNode< Key > &&  node)
inline

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [6/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( const SentinelControl &  control_data)
inlinenoexcept

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [7/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( )
inline

Definition at line 70 of file bin-node.cc.

◆ TestSentinelNode() [8/8]

template<typename Key >
TestSentinelNode< Key >::TestSentinelNode ( SentinelCtor  )
inline

Definition at line 70 of file bin-node.cc.

Member Function Documentation

◆ get_key() [1/2]

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

Definition at line 70 of file bin-node.cc.

◆ get_key() [2/2]

template<typename Key >
Key & TestSentinelNode< Key >::get_key ( )
inlinenoexcept

Definition at line 70 of file bin-node.cc.

◆ getL() [1/2]

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

Definition at line 70 of file bin-node.cc.

◆ getL() [2/2]

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

Definition at line 70 of file bin-node.cc.

◆ getR() [1/2]

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

Definition at line 70 of file bin-node.cc.

◆ getR() [2/2]

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

Definition at line 70 of file bin-node.cc.

◆ key_to_node()

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

Definition at line 70 of file bin-node.cc.

◆ reset()

template<typename Key >
void TestSentinelNode< Key >::reset ( )
inlinenoexcept

Definition at line 70 of file bin-node.cc.

Member Data Documentation

◆ key

template<typename Key >
Key TestSentinelNode< Key >::key = Key()
private

Definition at line 70 of file bin-node.cc.

◆ lLink

template<typename Key >
TestSentinelNode* TestSentinelNode< Key >::lLink
private

Definition at line 70 of file bin-node.cc.

◆ MaxHeight

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

Definition at line 70 of file bin-node.cc.

◆ NullPtr

template<typename Key >
TestSentinelNode< Key > *const TestSentinelNode< Key >::NullPtr = & TestSentinelNode <Key>::sentinel_node
static

Definition at line 70 of file bin-node.cc.

◆ rLink

template<typename Key >
TestSentinelNode* TestSentinelNode< Key >::rLink
private

Definition at line 70 of file bin-node.cc.

◆ sentinel_node

template<typename Key >
TestSentinelNode< Key > TestSentinelNode< Key >::sentinel_node
static

Definition at line 70 of file bin-node.cc.


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