helib::TreeNode< T > Class Template Reference

A node in a full binary tree. More...

#include <permutations.h>

Public Member Functions

 TreeNode ()
 
 TreeNode (const T &d)
 
T & getData ()
 
const T & getData () const
 
long getParent () const
 
long getLeftChild () const
 
long getRightChild () const
 
long getPrev () const
 
long getNext () const
 

Friends

class FullBinaryTree< T >
 

Detailed Description

template<typename T>
class helib::TreeNode< T >

A node in a full binary tree.

These nodes are in a std::vector, so we use indexes rather than pointers

Constructor & Destructor Documentation

◆ TreeNode() [1/2]

template<typename T >
helib::TreeNode< T >::TreeNode ( )
inline

◆ TreeNode() [2/2]

template<typename T >
helib::TreeNode< T >::TreeNode ( const T &  d)
inlineexplicit

Member Function Documentation

◆ getData() [1/2]

template<typename T >
T& helib::TreeNode< T >::getData ( )
inline

◆ getData() [2/2]

template<typename T >
const T& helib::TreeNode< T >::getData ( ) const
inline

◆ getLeftChild()

template<typename T >
long helib::TreeNode< T >::getLeftChild ( ) const
inline

◆ getNext()

template<typename T >
long helib::TreeNode< T >::getNext ( ) const
inline

◆ getParent()

template<typename T >
long helib::TreeNode< T >::getParent ( ) const
inline

◆ getPrev()

template<typename T >
long helib::TreeNode< T >::getPrev ( ) const
inline

◆ getRightChild()

template<typename T >
long helib::TreeNode< T >::getRightChild ( ) const
inline

Friends And Related Function Documentation

◆ FullBinaryTree< T >

template<typename T >
friend class FullBinaryTree< T >
friend