Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
Loading...
Searching...
No Matches
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.

Member Data Documentation

◆ left

struct Node* others::recursive_tree_traversals::Node::left {}

struct pointer to left subtree.

80{}; ///< struct pointer to left subtree.

◆ right

struct Node* others::recursive_tree_traversals::Node::right {}

struct pointer to right subtree.

81{}; ///< struct pointer to right subtree.

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