Structure of a BinaryTreeNode. More...
#include <kanzi/core/legacy/util/collection/kzc_binary_tree_node_manager.hpp>
Public Attributes | |
struct KzcBinaryTreeNode * | parent |
Parent node of the node. More... | |
struct KzcBinaryTreeNode * | left |
Left child node of the node. More... | |
struct KzcBinaryTreeNode * | right |
Right child node of the node. More... | |
void * | element |
Data of the node. More... | |
Structure of a BinaryTreeNode.
struct KzcBinaryTreeNode* KzcBinaryTreeNode::parent |
Parent node of the node.
struct KzcBinaryTreeNode* KzcBinaryTreeNode::left |
Left child node of the node.
struct KzcBinaryTreeNode* KzcBinaryTreeNode::right |
Right child node of the node.
void* KzcBinaryTreeNode::element |
Data of the node.