RBTreeNodeBase<T, P>
Class
Node of the red-black tree
Definition
Namespace:Telerik.Collections.Generic
Assembly:Telerik.WinControls.dll
Type Parameters:
T
Key type
P
Node's parameter
Syntax:
C#
public class RBTreeNodeBase<T, P> : ITreeNode<T>
Inheritance: objectRBTreeNodeBase<T, P>
Derived Classes:
Implements:
Constructors
Constructor
C#
public RBTreeNodeBase()
Properties
Colour of the node
C#
public RBTreeColor Color { get; }
Key
T
Key value of the node
C#
public virtual T Key { get; }
Implements:
Left
RBTreeNodeBase<T, P>
Left node
C#
public virtual RBTreeNodeBase<T, P> Left { get; }
Parent
RBTreeNodeBase<T, P>
Parent node
C#
public RBTreeNodeBase<T, P> Parent { get; }
Right
RBTreeNodeBase<T, P>
Right node
C#
public virtual RBTreeNodeBase<T, P> Right { get; }