ALLInterview.com :: Home Page            
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
   
 
Categories  >>  Software  >>  Operating Systems  >>  Data Structures
 
 
 
Question
Write programs for Bubble Sort, Quick sort
 Question Asked At :: Cognizent, Heap Sort
 Question Submitted By :: guest
I also faced this Question!!     Rank Answer Posted By  
 
Answer
/*QUICK SORT*/
#include<stdio.h>
#include<conio.h>

int split(int [],int,int);
void quicksort(int [],int,int);

void main()
  {
    int arr[20],n,i;
    clrscr();
    printf("\nQUICk SORT\n");
    printf("Enter the no.of elements:");
      scanf("%d",&n);
    printf("Enter the elements:");
    for(i=0;i<n;i++)
      scanf("%d",&arr[i]);
    printf("\nArray before sorting:\n");
    for(i=0;i<n;i++)
      printf("%d\t",arr[i]);
    quicksort(arr,0,n);
    printf("\nArray after sorting:\n");
    for(i=0;i<n;i++)
      printf("%d\t",arr[i]);
    getch();
  }


  void quicksort(int a[],int lower,int upper)
    {
      int i;
      if(upper>lower)
	{
	  i=split(a,lower,upper);
	  quicksort(a,lower,i-1);
	  quicksort(a,i+1,upper);
	}
    }

    int split(int a[],int lower,int upper)
      {
	int i,p,q,t;
	p=lower+1;
	q=upper;
	i=a[lower];
	while(q>=p)
	  {
	    while(a[p]<i)
	      p++;
	    while(a[q]>i)
	      q--;
	    if(q>p)
	      {
		t=a[p];
		a[p]=a[q];
		a[q]=t;
	      }
	   }
	 t=a[lower];
	 a[lower]=a[q];
	 a[q]=t;
	 return(q);
       }


 
Arnoldindia
 
View All Answers
 
 
 
 
 


   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2012  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com