"How will you merge these two arrays? Write the program
Array: A 1 18 22 43
Array: B 3 4 6 20 34 46 55
Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
Answer Posted / naman patidar
above problem can be solved using marge sort technique.
here i am giving a solution in java.
public class MargeSort {
public static void main(String[] args) {
int a[] = { 2, 5, 7, 9, 10, 15 };
int b[] = { 1, 3, 4, 5, 12, 14 };
int c[] = new int[a.length + b.length];
int aIndex = 0, bIndex = 0, cIndex = 0;
while (aIndex < a.length && bIndex < b.length) {
if (a[aIndex] < b[bIndex]) {
c[cIndex++] = a[aIndex++];
} else {
c[cIndex++] = b[bIndex++];
}
}
if (aIndex < a.length) {
while (aIndex < a.length) {
c[cIndex++] = a[aIndex++];
}
}
if (bIndex < b.length) {
while (bIndex < b.length) {
c[cIndex++] = b[bIndex++];
}
}
for (int i = 0; i < c.length; i++) {
System.out.println(c[i]);
}
}
}
| Is This Answer Correct ? | 12 Yes | 7 No |
Post New Answer View All Answers
What are mutator methods in c++?
Which is not a valid keyword a) public b) protected c) guarded
Write about all the implicit member functions of a class?
How would you implement a substr() function that extracts a sub string from a given string?
What will the line of code below print out and why?
What are the advantages of c++?
What information can an exception contain?
Can a program run without main function?
Why is main an int?
How does com provide language transparency?
Write a C++ Program to check whether a number is prime number or not?
What is object in c++ example?
Explain the difference between c++ and java.
What is iomanip c++?
What is a responder chain?