Show / Hide Table of Contents

    Class BucketSort

    A bucket sort implementation.

    Inheritance
    Object
    BucketSort
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: Advanced.Algorithms.Sorting
    Assembly: Advanced.Algorithms.dll
    Syntax
    public class BucketSort

    Methods

    Sort(Int32[], Int32)

    Sort given integers using bucket sort with merge sort as sub sort.

    Declaration
    public static int[] Sort(int[] array, int bucketSize)
    Parameters
    Type Name Description
    Int32[] array
    Int32 bucketSize
    Returns
    Type Description
    Int32[]
    Back to top Generated by DocFX