Table of Contents

Class LinqDataCalcExtensions.Node

Namespace
LinqDataCalc
Assembly
LinqDataCalc.dll

Class implementation for BTree Nodes, BTree operations.

public class LinqDataCalcExtensions.Node
Inheritance
LinqDataCalcExtensions.Node
Inherited Members
Extension Methods

Examples

Usage as below: (This represents a set of nodes for a BTree of height = 3-including root Node-)

Node leaf1 = new Node(null, null);
Node leaf2 = new Node(null, null);
Node node = new Node(leaf1, null);
Node root = new Node(node, leaf2);

Constructors

Node(Node, Node)

public Node(LinqDataCalcExtensions.Node leftChild, LinqDataCalcExtensions.Node rightChild)

Parameters

leftChild LinqDataCalcExtensions.Node
rightChild LinqDataCalcExtensions.Node

Properties

LeftChild

public LinqDataCalcExtensions.Node LeftChild { get; set; }

Property Value

LinqDataCalcExtensions.Node

RightChild

public LinqDataCalcExtensions.Node RightChild { get; set; }

Property Value

LinqDataCalcExtensions.Node