Write programs for Bubble Sort, Quick sort
Answer Posted / nitin jatpuriya
//PROGRAM FOR BUBBLE SORT
#include<stdio.h>
#include<conio.h>
#define SIZE 5
void main()
{
int a[SIZE],n,i,j,temp;
clrscr();
printf("enter the elements ");
for(i=0;i<SIZE;i++)
scanf("%d",&a[i]);
printf("the sorted list is :->\n");
for(i=0;i<SIZE;i++)
for(j=i;j<SIZE-i;j++)
if(a[j]>a[j+1])
{
temp=a[j];
a[j]=a[j+1];
a[j+1]=temp;
}
for(i=0;i<SIZE;i++)
printf("%d",a[i]);
getch();
}
Is This Answer Correct ? | 174 Yes | 94 No |
Post New Answer View All Answers
Why hashtable is faster than arraylist?
What actions are performed when a function returns?
Define Data Structures?
Explain the term tail recursion?
How do you empty an arraylist?
What is a simple path?
Explain about set and their types in a collection?
What is inserting in data structure?
Does treeset allow duplicates?
Is bubble sort adaptive?
Explain in brief a linked list.
Explain Stack
Define 2-3 tree?
What is sorting in data structure?
What is sort function?