-
Notifications
You must be signed in to change notification settings - Fork 292
/
Merge short algorithm
64 lines (59 loc) · 931 Bytes
/
Merge short algorithm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include<stdio.h>
void merge(int a[],int low,int mid,int high)
{ int i,j,k,b[50];
i=low;
j=mid+1;
k=low;
while(i<=mid&&j<=high)
{
if(a[i]<a[j])
{
b[k]=a[i];
i++,k++;
}
else
{
b[k]=a[j];
j++,k++;
}
}
while(i<=mid)
{
b[k]=a[i];
i++,k++;
}
while(j<=high)
{
b[k]=a[j];
j++,k++;
}
for(int i=low;i<=high;i++)
{
a[i]=b[i];
}
}
void ms(int a[],int low,int high)
{
if(low<high)
{
int mid=(high+low)/2;
ms(a,low,mid);
ms(a,mid+1,high);
merge(a,low,mid,high);
}
}
void display(int a[],int n)
{
for(int i=0;i<=n;i++)
{
printf("%d\n",a[i]);
}
}
int main()
{
int a[6]={11,52,42,63,54};
int n=4;
ms(a,0,4);
display(a,4);
return 0;
}