栈
0.1
数据结构_第3章
|
Public Member Functions | |
node (const T &obj=T(), node *prev=nullptr, node *next=nullptr) | |
node (T &&obj, node *prev=nullptr, node *next=nullptr) | |
~node ()=default | |
Public Attributes | |
T | data |
node * | prev |
node * | next |
Definition at line 33 of file dLinkList.h.
|
inline |
Definition at line 38 of file dLinkList.h.
|
inline |
Definition at line 40 of file dLinkList.h.
|
default |
T List::dLinkList< T >::node::data |
Definition at line 35 of file dLinkList.h.
Referenced by List::dLinkList< RPN::Rpn_t::Item >::back(), List::dLinkList< T >::const_iterator::operator*(), List::dLinkList< T >::iterator::operator*(), and List::operator+().
node * List::dLinkList< T >::node::next |
Definition at line 36 of file dLinkList.h.
Referenced by List::dLinkList< RPN::Rpn_t::Item >::begin(), List::operator+(), List::dLinkList< T >::const_iterator::operator++(), and List::dLinkList< T >::iterator::operator++().
node* List::dLinkList< T >::node::prev |
Definition at line 36 of file dLinkList.h.
Referenced by List::dLinkList< RPN::Rpn_t::Item >::back(), and List::dLinkList< T >::const_iterator::operator--().