|
Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Public Member Functions | |
| Node (int key, int level, void *value=nullptr) | |
Public Attributes | |
| int | key |
| key integer | |
| void * | value |
| pointer of value | |
| std::vector< std::shared_ptr< Node > > | forward |
| nodes of the given one in all levels | |
Node structure [Key][Node*, Node*...]
|
inline |
Creates node with provided key, level and value
| key | is number that is used for comparision |
| level | is the maximum level node's going to added |