Show / Hide Table of Contents

    Class KthSmallest<T>

    Returns the kth smallest element in given input

    Inheritance
    Object
    KthSmallest<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.Numerical
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class KthSmallest<T>
        where T : IComparable
    Type Parameters
    Name Description
    T

    Methods

    FindKthSmallest(T[], Int32)

    Declaration
    public T FindKthSmallest(T[] input, int k)
    Parameters
    Type Name Description
    T[] input
    Int32 k
    Returns
    Type Description
    T
    Back to top Generated by DocFX