Write a Java program to sort an array of given integers using the Bubble sorting Algorithm ????
public class BubbleSort {
public static void main(String[] args) {
int[] array = {6, 5, 4, 7, 10, 3, 2, 1};
sort(array);
for (int j : array) {
System.out.print("" + j + " ");
}
System.out.println();
}
public static void sort(int[] array) {
for (int i = 0; i < array.length - 1; i++) {
for (int j = 0; j < array.length - 1 - i; j++) {
if (array[j] > array[j + 1]) {
int temp = array[j];
array[j] = array[j + 1];
array[j + 1] = temp;
}
}
}
}
}
Comments
Leave a comment