예제 #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;
}
예제 #2
0
파일: main.c 프로젝트: herbertdai/ITA
void test_sorts() {
   testHeapSort();   

   testQuickSort();

//   testInsertSort();

   testCountingSort();

   testRadixSort();

}