Skip to content

Commit 8ff007e

Browse files
Merge pull request #82 from Ananyan25/master
heap sort in c
2 parents 0a60235 + 503aeb6 commit 8ff007e

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

heap sort.c

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
2+
#include<stdio.h>
3+
4+
void create(int []);
5+
void down_adjust(int [],int);
6+
7+
void main()
8+
{
9+
int heap[30],n,i,last,temp;
10+
printf("Enter no. of elements:");
11+
scanf("%d",&n);
12+
printf("\nEnter elements:");
13+
for(i=1;i<=n;i++)
14+
scanf("%d",&heap[i]);
15+
16+
//create a heap
17+
heap[0]=n;
18+
create(heap);
19+
20+
//sorting
21+
while(heap[0] > 1)
22+
{
23+
//swap heap[1] and heap[last]
24+
last=heap[0];
25+
temp=heap[1];
26+
heap[1]=heap[last];
27+
heap[last]=temp;
28+
heap[0]--;
29+
down_adjust(heap,1);
30+
}
31+
32+
//print sorted data
33+
printf("\nArray after sorting:\n");
34+
for(i=1;i<=n;i++)
35+
printf("%d ",heap[i]);
36+
}
37+
38+
void create(int heap[])
39+
{
40+
int i,n;
41+
n=heap[0]; //no. of elements
42+
for(i=n/2;i>=1;i--)
43+
down_adjust(heap,i);
44+
}
45+
46+
void down_adjust(int heap[],int i)
47+
{
48+
int j,temp,n,flag=1;
49+
n=heap[0];
50+
51+
while(2*i<=n && flag==1)
52+
{
53+
j=2*i; //j points to left child
54+
if(j+1<=n && heap[j+1] > heap[j])
55+
j=j+1;
56+
if(heap[i] > heap[j])
57+
flag=0;
58+
else
59+
{
60+
temp=heap[i];
61+
heap[i]=heap[j];
62+
heap[j]=temp;
63+
i=j;
64+
}
65+
}
66+
}

0 commit comments

Comments
 (0)