Search Results for

    Show / Hide Table of Contents

    Interface IShuffleStrategy

    An algorithm shuffling the specified window of the provided list.

    Namespace: MoreStructures.Lists.Sorting.QuickSort
    Assembly: MoreStructures.dll
    Syntax
    public interface IShuffleStrategy

    Methods

    | Improve this Doc View Source

    Shuffle<T>(IList<T>, Int32, Int32)

    Shuffles the items of list between index start and end.

    Declaration
    void Shuffle<T>(IList<T> list, int start, int end)
    Parameters
    Type Name Description
    IList<T> list

    The list whose window to be shuffled.

    System.Int32 start

    The left index of the window of list, included.

    System.Int32 end

    The right index of the window of list, included.

    Type Parameters
    Name Description
    T

    The type of items of the list. It doesn't necessarily have to support , since items are never compared to each other, only swapped.

    Extension Methods

    SuffixStructureNodeExtensions.GetAllSuffixesFor<TEdge, TNode>(TNode, TextWithTerminator)
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX