示例#1
0
    public void selection_sort_test(float count, float min, float max)
    {
        var list = NativeDataGenerator.GenrateRandomArray((int)count, min, max);

        SortTest(list, "Selection sort ", Sort.SelectionSort);
    }
示例#2
0
    public void radixMSDInPlace_sort_test(float count, float min, float max)
    {
        var list = NativeDataGenerator.GenrateRandomArray((int)count, min, max);

        SortTest(list, "RadixMSDInPlaceSort sort ", Sort.RadixMSDInPlaceSort);
    }