-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path14 Mergeing 2 Array.cpp
78 lines (74 loc) · 1.51 KB
/
14 Mergeing 2 Array.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
#include <iostream>
#include<stdio.h>
using namespace std;
struct Array
{
int *A;
int size;
int length;
};
void Display(struct Array* arr)
{
int i;
cout << "The elements of the array is " << endl;
for (i = 0; i < arr->length; i++)
cout << arr->A[i]<<" ";
}
Array* Merge(struct Array* arr1, struct Array* arr2)
{
Array* A=new Array;
int n = arr1->length + arr2->length;
A->A = new int[n];
int i = 0;
int j = 0;
int k = 0;
while (i < arr1->length && j < arr2->length)
{
if (arr1->A[i] < arr2->A[j])
A->A[k++] = arr1->A[i++];
else
A->A[k++] = arr2->A[j++];
}
for (; i < arr1->A[i]; i++)
A->A[k++] = arr1->A[i];
for (; i < arr2->A[j]; j++)
A->A[k++] = arr2->A[j];
A->length=k;
return A;
}
int main()
{
struct Array arr;
struct Array arr1;
struct Array *arr2;
int no, i,no1;
cout << "Enter the size of the array " << endl;
cin >> arr.size;
arr.A = new int[arr.size];
cout << "Enter the length of the array " << endl;
cin >> no;
arr.length = 0;
cout << "Enter the elements of the array" << endl;
for (i = 0; i < no; i++)
{
scanf("%d", &arr.A[i]);
}
arr.length = no;
cout << "Enter the Size of the 2nd array " << endl;
cin >> arr1.size;
arr1.A = new int[arr1.size];
cout << "Enter the length of the array " << endl;
cin >> no1;
arr1.length = 0;
cout << "Enter the elements of the array " << endl;
for (i = 0; i < no1; i++)
{
scanf("%d", &arr1.A[i]);
}
arr1.length = no1;
//int no2 = no + no1;
//arr2->A = new int[no2];
arr2 =Merge(&arr,&arr1);
Display(arr2);
return 0;
}