Brumski's DSA Learning Project 1.3
For Learning Data Structures and Algorithms in C++
Loading...
Searching...
No Matches
BSTree< T >::BSTNode< N > Class Template Reference

This is a template class that represents a node/element in a Binary Search Tree. More...

Public Attributes

data
 Holds the data of a single node/element.
 
std::unique_ptr< BSTNode< N > > left
 Pointer to left child.
 
std::unique_ptr< BSTNode< N > > right
 Pointer to right child.
 

Detailed Description

template<class T>
template<class N>
class BSTree< T >::BSTNode< N >

This is a template class that represents a node/element in a Binary Search Tree.

It can take any basic C++ data type.


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