forked from iamsidofficial/c-programs-for-college-students
-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge_2array.cpp
93 lines (73 loc) · 1.25 KB
/
merge_2array.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
cpp program for merging two arraay
Author: Anil Kumar
Date modified:22-10-2021
*/
#include <iostream>
using namespace std;
void marge(int a[], int b[], int n1, int n2)
{
int m[n1 + n2];
int i = 0, j = 0, k = 0;
while (i < n1 && j < n2)
{
if (a[i] < b[j])
{
m[k] = a[i];
i++;
k++;
}
else
{
m[k] = b[j];
j++;
k++;
}
}
if (i == n1)
{
do
{
m[k] = b[j];
j++;
k++;
} while (j < n2);
}
if (j == n2)
{
do
{
m[k] = a[i];
i++;
k++;
} while (i < n1);
}
for (int i = 0; i < n1+n2; i++)
{
cout<<m[i]<<" ";
}
}
int main()
{
cout << "number of element in 1 array:";
int n1;
cin >> n1;
int a1[n1];
cout << endl
<< "enter the elements:";
for (int i = 0; i < n1; i++)
{
cin >> a1[i];
}
cout << endl
<< "enter the element in 2 array:";
int n2;
cin >> n2;
int a2[n2];
cout << "enter the elements:";
for (int i = 0; i < n2; i++)
{
cin >> a2[i];
}
marge(a1, a2, n1, n2);
}