Home » Bubble Sort in Java

Bubble Sort in Java

by Online Tutorials Library

Bubble Sort in Java

We can create a java program to sort array elements using bubble sort. Bubble sort algorithm is known as the simplest sorting algorithm.

In bubble sort algorithm, array is traversed from first element to last element. Here, current element is compared with the next element. If current element is greater than the next element, it is swapped.

Output:

Array Before Bubble Sort 3 60 35 2 45 320 5  Array After Bubble Sort 2 3 5 35 45 60 320  

Next TopicJava Programs

You may also like