![]() |
TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
A Node struct that represents a single Node in a Binary Tree. More...
Public Member Functions | |
Node (int64_t _data) | |
Creates a new Node with some initial data. | |
Node (int64_t _data, Node *_next) | |
Creates a new Node with initial data and a successor. | |
Public Attributes | |
int64_t | data |
The value of the Node. | |
Node * | next |
The Node's successor. | |
A Node struct that represents a single Node in a Binary Tree.
Definition at line 32 of file circular_linked_list.cpp.
|
inlineexplicit |
Creates a new Node with some initial data.
_data | Value of Node |
< Set value of Node data
< Initialize successor
Definition at line 39 of file circular_linked_list.cpp.
|
inlineexplicit |
int64_t operations_on_datastructures::circular_linked_list::Node::data |
The value of the Node.
Definition at line 33 of file circular_linked_list.cpp.
Node* operations_on_datastructures::circular_linked_list::Node::next |
The Node's successor.
Definition at line 34 of file circular_linked_list.cpp.