Exemplo n.º 1
0
    void SelectionSortTest(int[] array)
    {
        SelectionSort SS = new SelectionSort();

        SS.LogTestArray(array);
        SS.sort(array);
        SS.LogTestArray(array);
    }