void Tester<T>::median3_iterQuickSortTest(double TimeTable[], int& timeCount) // [4]
{//중간값(메디안) 반복 퀵소트 TEST
	QuickSort<T> quick;
	ioHandler io;
	clock_t begin, end;

	begin = clock();
	quick.median3_iterQuickSort(arr, 0, size-1);
	end =  clock();

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