Exemplo n.º 1
0
int _tmain(int argc, _TCHAR* argv[])
{
	srand((unsigned) time(NULL));
	int test[MAX_ARR_NUM] = {0,};

	testCountingSort(test, MAX_ARR_NUM);
	testRadixSort(test, MAX_ARR_NUM);
	
	return 0;
}
Exemplo n.º 2
0
void test_sorts() {
   testHeapSort();   

   testQuickSort();

//   testInsertSort();

   testCountingSort();

   testRadixSort();

}