Write programs for Bubble Sort, Quick sort
Answer Posted / arnoldindia
/*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);
}
| Is This Answer Correct ? | 114 Yes | 46 No |
Post New Answer View All Answers
What is entryset in hashmap?
Does arraylist contain duplicates?
Write the steps involved in the insertion and deletion of an element in the stack.
List out a few of the applications that make use of Multilinked Structures?
What are the operations that can be performed on a stack?
How do I rearrange rows in numbers?
What is array and its types in data structure?
How do you empty an arraylist?
What are the advantages of stack?
Define a right-skewed binary tree?
Can the double-checked locking fail on a single processor system?
Can tuple be sorted?
Differentiate between hashmap and hashtable.
Define an algorithm.
Explain the common uses of threaded binary tree.