Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
others::recursive_tree_traversals::Node Struct Reference

The structure to hold Nodes of the tree. More...

Collaboration diagram for others::recursive_tree_traversals::Node:
[legend]

Public Attributes

uint64_t data = 0
 The value/key of the node.
 
struct Nodeleft {}
 struct pointer to left subtree.
 
struct Noderight {}
 struct pointer to right subtree.
 

Detailed Description

The structure to hold Nodes of the tree.

Parameters
dataValue that will be stored in the node.
leftfollow up left subtree.
rightfollow up right subtree.

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