Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
Loading...
Searching...
No Matches
EepicNode< Key > Class Template Reference
Inheritance diagram for EepicNode< Key >:
[legend]
Collaboration diagram for EepicNode< 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
 
EepicNode *& getL () noexcept
 
EepicNode *& getR () noexcept
 
const EepicNodegetL () const noexcept
 
const EepicNodegetR () const noexcept
 
 EepicNode (const Key &k)
 
 EepicNode (Key &&k) noexcept
 
 EepicNode (const EepicNode_Data &control_data, const Key &k)
 
 EepicNode (const EepicNode &node)
 
 EepicNode (EepicNode &&node)
 
 EepicNode (const EepicNode_Data &control_data) noexcept
 
 EepicNode ()
 
void reset () noexcept
 
- Public Member Functions inherited from EepicNode_Data
 EepicNode_Data ()
 
void reset ()
 
intgetCount ()
 
intget_level ()
 
long doubleget_x ()
 
long doubleget_y ()
 
long doubleget_triangle_height ()
 
long doubleget_rectangle_height ()
 
long doubleget_xoffset ()
 
long doubleget_yoffset ()
 
boolget_external_node ()
 
bool is_external () const
 
bool is_triangle () const
 
bool is_rectangle () const
 
string & get_key_string ()
 
string & get_aux_string ()
 
Line_Distance_Dataget_line_distance_data ()
 
boolget_shadow ()
 
boolget_without_node ()
 
boolget_scratch ()
 
boolget_with_arc ()
 
boolget_dash_llink ()
 
boolget_dash_rlink ()
 
EepicNode< long > *& get_prev ()
 
EepicNode< long > *& get_succ ()
 
DynDlist< Tag_Data > & get_tag_list ()
 
DynDlist< Arc_Desc > & get_arc_list ()
 
DynDlist< Thread_Desc > & get_thread_list ()
 

Static Public Member Functions

static EepicNodekey_to_node (Key &__key) noexcept
 

Static Public Attributes

static const size_t MaxHeight = 5000
 
static EepicNode *const NullPtr = nullptr
 

Private Attributes

Key key = Key()
 
EepicNodelLink
 
EepicNoderLink
 

Detailed Description

template<typename Key>
class EepicNode< Key >

Definition at line 401 of file btreepic.C.

Member Typedef Documentation

◆ key_type

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

Definition at line 401 of file btreepic.C.

◆ Key_Type

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

Definition at line 401 of file btreepic.C.

Constructor & Destructor Documentation

◆ EepicNode() [1/7]

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

Definition at line 401 of file btreepic.C.

◆ EepicNode() [2/7]

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

Definition at line 401 of file btreepic.C.

◆ EepicNode() [3/7]

template<typename Key >
EepicNode< Key >::EepicNode ( const EepicNode_Data control_data,
const Key &  k 
)
inline

Definition at line 401 of file btreepic.C.

◆ EepicNode() [4/7]

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

Definition at line 401 of file btreepic.C.

◆ EepicNode() [5/7]

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

Definition at line 401 of file btreepic.C.

◆ EepicNode() [6/7]

template<typename Key >
EepicNode< Key >::EepicNode ( const EepicNode_Data control_data)
inlinenoexcept

Definition at line 401 of file btreepic.C.

◆ EepicNode() [7/7]

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

Definition at line 401 of file btreepic.C.

Member Function Documentation

◆ get_key() [1/2]

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

Definition at line 401 of file btreepic.C.

◆ get_key() [2/2]

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

Definition at line 401 of file btreepic.C.

◆ getL() [1/2]

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

Definition at line 401 of file btreepic.C.

◆ getL() [2/2]

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

Definition at line 401 of file btreepic.C.

◆ getR() [1/2]

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

Definition at line 401 of file btreepic.C.

◆ getR() [2/2]

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

Definition at line 401 of file btreepic.C.

◆ key_to_node()

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

Definition at line 401 of file btreepic.C.

◆ reset()

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

Definition at line 401 of file btreepic.C.

Member Data Documentation

◆ key

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

Definition at line 401 of file btreepic.C.

◆ lLink

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

Definition at line 401 of file btreepic.C.

◆ MaxHeight

template<typename Key >
const size_t EepicNode< Key >::MaxHeight = 5000
static

Definition at line 401 of file btreepic.C.

◆ NullPtr

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

Definition at line 401 of file btreepic.C.

◆ rLink

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

Definition at line 401 of file btreepic.C.


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