/* Quick Sort 퀵 소트 */ #include #include using namespace std; //재귀 퀵소트 template void QuickSort(T *a, const int left, const int right) { //a[left:right]를 오름차순으로 정렬 //a[left]는 pivot이다. if (left pivot); if (i < j) swap(a[i], a[j]); } while (i < j); swap(a[left], a[j]); QuickSort(..