07 September, 2012

Bubble Sort

import java.util.*;
class bubblesort
{

public static void main(String[] args)
{
int []a = {10,2,13,40,25,6,27,38,9} ;
bubblesort(a);
for(int i=0;i<=a.length-1;i++)
    System.out.println(a[i]);
}

public static void bubblesort(int[] a)
{
for(int i=0;i<=a.length-2;i++)
{
    for(int j=0;j<=a.length-2-i;j++)
        if(a[j+1]<a[j])
        {
            int t=a[j];
            a[j]=a[j+1];
            a[j+1]=t;
        }
}
}

}

No comments:

Post a Comment

Thank You !