Show / Hide Table of Contents

Class FibonacciHeapCell<TPriority, TValue>

Represents a cell that stores a value with its priority.

Inheritance
System.Object
FibonacciHeapCell<TPriority, TValue>
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: QuikGraph.Collections
Assembly: QuikGraph.dll
Syntax
[Serializable]
public sealed class FibonacciHeapCell<TPriority, TValue>
Type Parameters
Name Description
TPriority

Priority type.

TValue

Value type.

Properties

| Improve this Doc View Source

Children

Children cells.

Declaration
public FibonacciHeapLinkedList<TPriority, TValue> Children { get; }
Property Value
Type Description
FibonacciHeapLinkedList<TPriority, TValue>
| Improve this Doc View Source

Degree

Determines the depth of a node.

Declaration
public int Degree { get; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Marked

Determines if a node has had a child cut from it before.

Declaration
public bool Marked { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Next

Next cell.

Declaration
public FibonacciHeapCell<TPriority, TValue> Next { get; }
Property Value
Type Description
FibonacciHeapCell<TPriority, TValue>
| Improve this Doc View Source

Parent

Parent cell.

Declaration
public FibonacciHeapCell<TPriority, TValue> Parent { get; }
Property Value
Type Description
FibonacciHeapCell<TPriority, TValue>
| Improve this Doc View Source

Previous

Previous cell.

Declaration
public FibonacciHeapCell<TPriority, TValue> Previous { get; }
Property Value
Type Description
FibonacciHeapCell<TPriority, TValue>
| Improve this Doc View Source

Priority

Gets or sets the value priority.

Declaration
public TPriority Priority { get; }
Property Value
Type Description
TPriority
| Improve this Doc View Source

Removed

Gets or sets the state removed of a cell.

Declaration
public bool Removed { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Value

Gets or sets the value.

Declaration
public TValue Value { get; }
Property Value
Type Description
TValue

Methods

| Improve this Doc View Source

ToKeyValuePair()

Converts this cell to a System.Collections.Generic.KeyValuePair{TPriority,TValue}.

Declaration
public KeyValuePair<TPriority, TValue> ToKeyValuePair()
Returns
Type Description
System.Collections.Generic.KeyValuePair<TPriority, TValue>

A corresponding System.Collections.Generic.KeyValuePair{TPriority,TValue}.

Extension Methods

GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, String, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter)
GraphMLExtensions.SerializeToGraphML<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, XmlReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeFromGraphML<TVertex, TEdge, TGraph>(TGraph, String, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
GraphMLExtensions.DeserializeAndValidateFromGraphML<TVertex, TEdge, TGraph>(TGraph, TextReader, IdentifiableVertexFactory<TVertex>, IdentifiableEdgeFactory<TVertex, TEdge>)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String)
SerializationExtensions.SerializeToXml<TVertex, TEdge, TGraph>(TGraph, XmlWriter, VertexIdentity<TVertex>, EdgeIdentity<TVertex, TEdge>, String, String, String, String, Action<XmlWriter, TGraph>, Action<XmlWriter, TVertex>, Action<XmlWriter, TEdge>)
  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph