How can you merge the contents of two sorted arrays into a new array such that the contents of this new array is sorted?
-
-
Answer:
/*Merging of two arrays*/ #include"stdio.h" #include"conio.h" #include"process.h" #define MAXELE 25 void merge(int a[],int b[],int c[],int n1,int n2,int n3) { int apoint,bpoint,cpoint; int alimit,blimit,climit; alimit=n1-1; blimit=n2-1; climit=n3-1; if(n1+n2!=n3) { printf("\n\nArray boinds incompatible"); getch(); exit(1); } apoint=0; bpoint=0; cpoint=0; for(;apoint<=alimit&&bpoint<=blimit;cpoint++) if(a[apoint]<b[bpoint]) c[cpoint]=a[apoint++]; else c[cpoint]=b[bpoint++]; while(apoint<=alimit) c[cpoint++]=a[apoint++]; while(bpoint<=blimit) c[cpoint++]=b[bpoint++]; }/*end merge*/ void main() { clrscr(); int a[MAXELE],b[MAXELE],c[MAXELE],i,n1,n2,n3; printf("Enter number of elements for the 1st array..."); scanf("%d",&n1); for(i=0;i<n1;i++) { printf("Enter value at a[%d]=",i); scanf("%d",&a[i]); } printf("\n\nEnter number of elements for the 2nd array..."); scanf("%d",&n2); for(i=0;i<n2;i++) { printf("Enter value at b[%d]=",i); scanf("%d",&b[i]); } n3=n1+n2; merge(a,b,c,n1,n2,n3); printf("\n\nMerged 3rd array:\n"); for(i=0;i<n3;i++) printf("c[%d]=%d\n",i,c[i]); getch(); }
community wiki at wiki.answers.com Visit the source
Related Q & A:
- How can I merge all my Google calendars into my primary one?Best solution by Quora
- How do I delete my old Yahoo page after I made a new page?Best solution by answers.yahoo.com
- How can PCR or mass spectrometer be used to detect an unknown new bacteria to which no human has exposed?Best solution by Yahoo! Answers
- How can I separate a video into two parts?Best solution by Yahoo! Answers
- How can i convert a game on my old pc to my new pc?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.