Show / Hide Table of Contents

    Class HuffmanCoding<T>

    A huffman coding implementation using Fibornacci Min Heap.

    Inheritance
    Object
    HuffmanCoding<T>
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.Compression
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class HuffmanCoding<T>
    Type Parameters
    Name Description
    T

    Methods

    Compress(T[])

    Returns a dictionary of chosen encoding bytes for each distinct T.

    Declaration
    public Dictionary<T, byte[]> Compress(T[] input)
    Parameters
    Type Name Description
    T[] input
    Returns
    Type Description
    Dictionary<T, Byte[]>
    Back to top Generated by DocFX