Divide And Conquer 썸네일형 리스트형 분할정복(Divide and Conquer) #include #include #define SIZE 16 using namespace std; template void merge_sort(data *arr, int size); int main() { int arr[SIZE]; srand(time(0)); for(int i = 0 ; i < SIZE ; i++) { arr[i] = rand()%100 + 1; cout 더보기 이전 1 다음