예제 #1
0
    void MergeSortTest(int[] array)
    {
        MergeSort MS = new MergeSort();

        MS.LogTestArray(array);
        MS.sort(array, 0, array.Length - 1);
        MS.LogTestArray(array);
    }