public class BubbleSort { public static void bubbleSort(int[] arr) { int n = arr.length; for (int i = 0; i arr[j + 1]) { // Swap arr[j] and arr[j+1] int temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } } } public static void main(String[] args) { int[] arr = {64, 34, 25, 12, 22, 11, 90}; System.out.println("Array before sorting:"); for (int num : arr) { System.out.print(num + " "); } bubbleSort(arr); System.out.println("\nArray after sorting:"); for (int num : arr) { System.out.print(num + " "); } } }
This blog is for technical students , professionals and for those also who want's to learn programming and want's to crack any fresher as well as experience job interview