Exemplo n.º 1
0
void Tester<T>::linkedInsertionSortTest(double TimeTable[], int& timeCount)
{//연결 삽입 정렬 TEST
	InsertionSort<T> insertion;
	ioHandler io;
	clock_t begin, end;

	begin = clock();
	insertion.linkedInsertionSort(arr,size);
	end =  clock();

	io.setTime(TimeTable,timeCount, ((double)(end - begin))/CLOCKS_PER_SEC);
}