C# 클래스 LSCollections.SkipList.Node

Represents a node in the SkipList.
상속: IDisposable
파일 보기 프로젝트 열기: jeske/StepsDB-alpha

공개 프로퍼티들

프로퍼티 타입 설명
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[]