버블 소트1 Bubble Sort(거품 정렬) #include using namespace std; template void BubbleSort(T arr[], int n); int main() { int arr[] = {5, 4, -1, 0, 2, 11, 1}; BubbleSort(arr, 7); for (int i = 0; i < 7; i++) cout 2007. 11. 9. 이전 1 다음