Exemplo n.º 1
0
 public static Benchmark ComparisonSorts <T>(IList <T> array, Comparer <T> comparer = null)
 {
     return(For(nameof(BubbleSort), () => BubbleSort.Perform(array, comparer))
            .And(nameof(InsertionSort), () => InsertionSort.Perform(array, comparer))
            .And(nameof(MergeSort), () => MergeSort.PerformTopDown(array, comparer))
            .And($"Parallel {nameof(MergeSort)}", () => MergeSort.PerformParallel(array, comparer))
            .And($"Natural {nameof(MergeSort)}", () => MergeSort.PerformNatural(array, comparer))
            .And(nameof(SelectionSort), () => SelectionSort.Perform(array, comparer))
            .And(nameof(QuickSort), () => QuickSort.Perform(array, comparer)));
 }
Exemplo n.º 2
0
        public void TestSelectionSort(int[] input)
        {
            SelectionSort.Perform(input);

            AssertHelper.IsSorted(input);
        }