Реферат: Сортировка данных в массиве
switch(type)
{
case exchange:
ExchangeSort(a, n);
cout << "Сортировкаобменом: ";
break;
case selection:
SelectionSort(a, n);
cout << "Сортировкавыбором: ";
break;
case bubble: . . . . . . .
case insertion: . . . . . . .
case tournament: . . . . . . .
case tree: . . . . . . .
case heap: . . . . . . .
case quick: . . . . . . .
}
// Подсчитать время выполнения в секундах.
time = TickCount() - time;
cout << time/60.0 << endl;
}
// Выполняет сортировку массива с n элементами,
// расположенных в порядке, определяемом параметром order.
void RunTest(int n, Ordering order)
{
int i;
int *a, *b;
SortType stype;
RandomNumber rnd;