Class BinaryTree<K, V>
Inheritance
System.Object
BinaryTree<K, V>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: NFX.Web.GeoLookup
Assembly: NFX.Web.dll
Syntax
public class BinaryTree<K, V>
where K : IEnumerable<bool>
Type Parameters
| Name | Description |
|---|---|
| K | |
| V |
Constructors
BinaryTree()
Declaration
public BinaryTree()
Fields
Root
Declaration
public readonly BinaryTree<K, V>.Node<K> Root
Field Value
| Type | Description |
|---|---|
| BinaryTree.Node<K> |
Values
Declaration
public readonly List<V> Values
Field Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<V> |
Properties
Item[K]
Declaration
public V this[K key] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| K | key |
Property Value
| Type | Description |
|---|---|
| V |
Methods
BuildIndex()
Declaration
public BinaryIndexedTree<K, V> BuildIndex()
Returns
| Type | Description |
|---|---|
| BinaryIndexedTree<K, V> |