diff --git a/sorting/heap_sort.c b/sorting/heap_sort.c index ad50107e..30b2208b 100644 --- a/sorting/heap_sort.c +++ b/sorting/heap_sort.c @@ -1,8 +1,3 @@ -/** - * max_heapify takes O(logn). - * build_maxheap takes O(n). - * heapsort takes O(nlogn) since it requires above mentioned functions. - */ #include void max_heapify(int *a, int i, int n);