know the personalities
hold your mouse,move left and right

Quick Sorting


job detailsFree Publishing of valuable information(s) in our website-Procedure to submit detailsjob details

Free Publishing of your College/University function details


Free Publishing of Your College/University function details in our website.Please send details to following email ids


technicalsymposium@gmail.com.
technicalsymposium@in.com.
technicalsymposium@yahoo.com.
technicalsymposium@hotmail.com.
Google Groups

Get Free E-Mail Alerts Daily

Get Daily Job/EntranceExam/Scholarships/
Admission/Competitive Exam Details Symposium/Conference Alerts in your email

Please Enter your email id and go to your inbox and confirm.You will be a member in our group.

Email:
Visit this group

Freshers Jobs/Symposium/Conference/Certification &Education News Given Below-Get Now

Freshers Jobs and IT /Govt Jobs

Symposium and Conference Details

Free Lecture Notes

Free Placement Papers

Free Project Codings


                

#include<stdio.h>
void split(int a[],int lb,int ub,int *pivot)
{
int down,upper,elt,t;
elt=a[lb];
down=lb;
upper=ub;
while(down<upper)
{
for(;a[down]<=elt && down<upper;down++);
for(;a[upper]>elt;upper--);
if(down<upper)
{
t=a[down];
a[down]=a[upper];
a[upper]=t;
}
}
a[lb]=a[upper];
a[upper]=elt;
*pivot=upper;
}
void quick(int a[],int lb,int ub)
{
int pivot,i;
if(lb<ub)
{
split(a,lb,ub,&pivot);
quick(a,lb,pivot-1);
quick(a,pivot+1,ub);
}
}
void main()
{
int a[15],n,i;
clrscr();
printf("\n\n\t\tQUICK SORT USING DIVIDE & CONQUER TECHNIQUE\n\n");
printf("\n\tEnter the No. of elt in the list : ");
scanf("%d",&n);
printf("\n\n\t\tEnter the Elements : ");
for(i=0;i<n;i++)
scanf("%d",&a[i]);
quick(a,0,n-1);
printf("\n\n\t\tSORTED LIST \n\n\t");
for(i=0;i<n;i++,printf("\t"))
printf("%d",a[i]);
getch();
}

Hosting by Yahoo!

About-Us    Contact-Us    Site-map

©copyright 2009 All rights are reserved to technicalsymposium.com