google.com, pub-4617457846989927, DIRECT, f08c47fec0942fa0 Learn to enjoy every minute of your life.Only I can change my life.

Wednesday, April 1, 2015

Write a ‘C’ program to sort an array elements using Merge Sort technique.

Write a ‘C’ program to sort an array elements using Merge Sort technique.


#include<stdio.h>
#include<conio.h>
int n;
void display(int a[])
{
  int i;
  printf("\n");
  for(i=0;i<n;i++)
    printf("\t%d",a[i]);
}
void merge(int a[],int low,int mid,int high)
{
  int i,j,k,b[20];
  i=low;
  j=mid+1;
  k=0;
  while ((i<=mid) && (j<=high))
  {
    if (a[i]<=a[j])
b[k++]=a[i++];
    else
b[k++]=a[j++];
  }
  while (i<=mid)
b[k++]=a[i++];
  while (j<=high)
b[k++]=a[j++];
  //copy merged element from b to a
  for(j=low,k=0;j<=high;j++,k++)
a[j]=b[k];
}
void mergesort(int a[],int low,int high)
{
  int mid;
  if(low<high)
  {
    mid=(low+high)/2;
    mergesort(a,low,mid);
    mergesort(a,mid+1,high);
    merge(a,low,mid,high);
  }
}
void main()
{
 int a[20],i;
 clrscr();
 printf("\nHow many numbers: ");
 scanf("%d",&n);
 printf("\nEnetr the unsorted numbers: ");
 for(i=0;i<n;i++)
    scanf("%d",&a[i]);
 mergesort(a,0,n-1);
 display(a);
 getch();
}

Write a C program for multiplication of two m*n matrices.

Write a ‘C’ program for multiplication of two m*n matrices.

#include<stdio.h>
#include<conio.h>
void main()
{
   int m,n,p,q,i=0,j=0;
   int a[10][10],b[10][10],c[10][10];
   clrscr();
   printf("enter the number of row: ");
   scanf("%d",&m);
   printf("enter the number of column :");
   scanf("%d",&n);
   printf("enter the first matrix elements\n");
   for(i=0;i<m;i++)
   {
      for(j=0;j<n;j++)
      {
scanf("%d",&a[i][j]);
      }
   }
   printf("enter the number of row: ");
   scanf("%d",&p);
   printf("enter the number of column :");
   scanf("%d",&q);
   printf("enter the second matrix elements\n");
   for(i=0;i<p;i++)
   {
      for(j=0;j<q;j++)
      {
scanf("%d",&b[i][j]);
      }
   }
   for(i=0;i<m;i++)
   {
      for(j=0;j<q;j++)
      {
  c[i][j]=a[i][j]*b[j][i];
      }
   }
   printf("multiplication of matrix is \n");
   for(i=0;i<m;i++)
   {
      for(j=0;j<q;j++)
      {
printf("%d  ",c[i][j]);
      }
      printf("\n");
   }
   getch();
}

अच्छे विचार करे विचार

  पहचान की नुमाईश, जरा कम करें... जहाँ भी "मैं" लिखा है, उसे "हम" करें... हमारी "इच्छाओं" से ज़्यादा "सुन...