示例#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();

}