C# Класс LSCollections.SkipList.Node

Represents a node in the SkipList.
Наследование: IDisposable
Показать файл Открыть проект

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

Свойство Тип Описание
entry System.Collections.DictionaryEntry
forward Node[]

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

Метод Описание
Dispose ( ) : void

Disposes the Node.

Node ( int level ) : System

Initializes an instant of a Node with its node level.

Node ( int level, object key, object val ) : System

Initializes an instant of a Node with its node level and key/value pair.

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

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

Disposes the Node.
public Dispose ( ) : void
Результат void

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

Initializes an instant of a Node with its node level.
public Node ( int level ) : System
level int /// The node level. ///
Результат System

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

Initializes an instant of a Node with its node level and key/value pair.
public Node ( int level, object key, object val ) : System
level int /// The node level. ///
key object /// The key for the node. ///
val object /// The value for the node. ///
Результат System

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

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

public DictionaryEntry,System.Collections entry
Результат System.Collections.DictionaryEntry

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

public Node[] forward
Результат Node[]