TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Node for a doubly linked list with data, prev and next pointers. More...
Public Member Functions | |
D_Node (T data) | |
D_Node (T data) | |
Public Attributes | |
T | data |
data of the node | |
D_Node< T > * | prev |
previous node in the doubly linked list | |
D_Node< T > * | next |
next node in the doubly linked list | |
Node for a doubly linked list with data, prev and next pointers.
T | type of the data of the node |
Definition at line 42 of file lru_cache2.cpp.
|
inlineexplicit |
Definition at line 51 of file lfu_cache.cpp.
|
inlineexplicit |
T others::Cache::D_Node< T >::data |
data of the node
Definition at line 47 of file lfu_cache.cpp.
D_Node< T > * others::Cache::D_Node< T >::next |
next node in the doubly linked list
Definition at line 49 of file lfu_cache.cpp.
D_Node< T > * others::Cache::D_Node< T >::prev |
previous node in the doubly linked list
Definition at line 48 of file lfu_cache.cpp.