Program to implement Bubble Sort in JAVA

What is Bubble Sort in Java?

Bubble sort in C++

 

Graphical representation of Bubble Sort:

bubble sort c++

 

An example of bubble sort. Starting from the beginning of the list, compare every adjacent pair, swap their position if they are not in the right order (the latter one is smaller than the former one). After each iteration, one less element (the last one) is needed to be compared until there are no more elements left to be compared.

 

 Step by Step Example:

Let us take the array of numbers “5 1 4 2 8”, and sort the array from lowest number to greatest number using bubble sort. In each step, elements written in bold are being compared. Three passes will be required.

First Pass
( 5 1 4 2 8 )   –>   ( 1 5 4 2 8 ), Here, algorithm compares the first two elements, and swaps since 5 > 1.
( 1 5 4 2 8 )   –>   ( 1 4 5 2 8 ), Swap since 5 > 4
( 1 4 5 2 8 )   –>   ( 1 4 2 5 8 ), Swap since 5 > 2
( 1 4 2 5 8 )   –>   ( 1 4 2 5 8 ), Now, since these elements are already in order (8 > 5), algorithm does not swap them.

Second Pass
( 1 4 2 5 8 )   –>   ( 1 4 2 5 8 )
( 1 4 2 5 8 )   –>   ( 1 2 4 5 8 ), Swap since 4 > 2
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )

Now, the array is already sorted, but the algorithm does not know if it is completed. The algorithm needs one whole pass without any swap to know it is sorted.

Third Pass
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )
( 1 2 4 5 8 )   –>   ( 1 2 4 5 8 )

Source: Wikipedia

Program to implement Bubble sort in Java:

import java.util.Scanner;

 

class BubbleSort

{

public static void main(String...s)

{

  int a[]=new int[20],n,i,j,temp;

 

  Scanner sc=new Scanner(System.in);

  System.out.println("Enter how many elements:");

  n=sc.nextInt();

 

  System.out.println("nEnter elements of array:");

  

  for(i=0;i<n;++i)

   a[i]=sc.nextInt();

 

  for(i=1;i<n;++i)

   for(j=0;j<n-i;++j)

   {

    if(a[j]>a[j+1])

    {

     temp=a[j];

     a[j]=a[j+1];

     a[j+1]=temp;

    }

   }

 

  System.out.println("nArray after bubble sort:");

 

  for(i=0;i<n;++i)

   System.out.print(a[i]+" ");

}

}

OUTPUT:

bubble sort in java

Leave a Comment