From 18ee0c1546bc95e43cad013f0f7f19141de1758f Mon Sep 17 00:00:00 2001 From: Shezza221b <41204318+Shezza221b@users.noreply.github.com> Date: Thu, 1 Oct 2020 04:27:50 +0530 Subject: [PATCH] Update heap_sort.c --- sorting/heap_sort.c | 5 ----- 1 file changed, 5 deletions(-) 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);