Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
#include <node.hpp>
Public Types | |
using | value_type = ValueType |
Public Member Functions | |
Node (int v, Node *n) | |
Public Attributes | |
int | data |
int | next |
ValueType | data = {} |
std::shared_ptr< Node< ValueType > > | next = {} |
int | val |
Node * | next |
for std::cout for std::shared_ptr for std::vector Definition of the node as a linked-list
ValueType | type of data nodes of the linked list should contain |
ValueType Node< ValueType >::data = {} |
std::shared_ptr<Node<ValueType> > Node< ValueType >::next = {} |