tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 C Language > Algorithms > Bubble sort

Bubble sort 

This example shows implementing bubble sort algorithm.

File Name  :  
source/C/algorithms/bubble_sort.c 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01#include <stdio.h>
02#include<conio.h>
03#include <time.h>
04 
05int main(void)
06{
07    int i,j,k,a[20],n;
08    printf("Enter size of array :");
09    scanf("%d",&n);
10 
11    printf("\nEnter the elements of the array : ");
12    for(i=0;i<n;i++) {
13        scanf("%d",&a[i]);
14    }
15 
16    for(i=0;i<n;i++)
17    {
18       for(j=0;j<n-i;j++)
19       {
20         if(a[j]>a[j+1]) {
21             a[j]=a[j]+a[j+1]-(a[j+1]=a[j]);
22         }
23       }
24    }
25 
26    printf("\nElements after sorting: ");
27    for(i=0;i<n;i++)
28    printf("\t%d",a[i]);
29     
30    getch();
31    return 0;
32}

It gives the following output,
Enter size of array :6

Enter the elements of the array : 6 2 1 8 3 9

Elements after sorting:   1   2   3   6   8   9



 
  


  
bl  br