void Tester<T>::STLQuickSortTest(double TimeTable[], int& timeCount) // [5]
{//STL 퀵소트 TEST
	QuickSort<T> quick;
	ioHandler io;
	clock_t begin, end;

	begin = clock();
	quick.STLQuickSort(arr, size);
	end =  clock();

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