![]() |
TheAlgorithms/C++ 1.0.0
All the 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 |
Definition at line 14 of file linkedlist_implentation_usingarray.cpp.
| using Node< ValueType >::value_type = ValueType |
Definition at line 8 of file get_size_of_linked_list.cpp.
| int Node< ValueType >::data |
Definition at line 15 of file linkedlist_implentation_usingarray.cpp.
| ValueType Node< ValueType >::data = {} |
| int Node< ValueType >::next |
Definition at line 16 of file linkedlist_implentation_usingarray.cpp.
Definition at line 6 of file get_size_of_linked_list.cpp.
| int Node< ValueType >::val |
Definition at line 5 of file get_size_of_linked_list.cpp.