C# Класс s1ck.GraphDB.Plugins.Index.BinaryTree.BinaryTreeIndex.BinaryTreeNode

This inner class represents a node in the binary tree. Each node has a left and a right child node, a search key and an associated value. Node: Key ---> Set of values / \ / \ Left Node Right Node
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Key IComparable
Left BinaryTreeNode
Right BinaryTreeNode
Values HashSet

Открытые методы

Метод Описание
BinaryTreeNode ( IComparable myKey, HashSet myValues ) : System

Creates a new instance of a tree node

Описание методов

BinaryTreeNode() публичный Метод

Creates a new instance of a tree node
public BinaryTreeNode ( IComparable myKey, HashSet myValues ) : System
myKey IComparable Search key
myValues HashSet Associated values
Результат System

Описание свойств

Key публичное свойство

The indexed search key for that node
public IComparable Key
Результат IComparable

Left публичное свойство

Refers to the left child node
public BinaryTreeNode Left
Результат BinaryTreeNode

Right публичное свойство

Refers to the right child node
public BinaryTreeNode Right
Результат BinaryTreeNode

Values публичное свойство

The associated values for the search key
public HashSet Values
Результат HashSet