이제 우리는 Python에서 힙 정렬을 구현하는 프로그램을 작성했습니다. 배열을 정렬하고 위에서 작성한 코드를 테스트할 시간입니다. arr=[5,3,4,2,1,6]heapSort(arr)print("Sorted array :", arr) ...