|
NexusForce 1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
|
红黑树迭代器基类 更多...
#include <rb_tree.hpp>
Public 类型 | |
| using | iterator_category = bidirectional_iterator_tag |
| 双向迭代器 | |
Protected 类型 | |
| using | base_ptr = rb_tree_node_base::base_ptr |
| 基类指针类型 | |
Protected 成员函数 | |
| void | increment () noexcept |
| 递增操作(移动到中序遍历的后继节点) | |
| void | decrement () noexcept |
| 递减操作(移动到中序遍历的前驱节点) | |
Protected 属性 | |
| base_ptr | node_ = nullptr |
| 当前节点指针 | |