Java examples for Data Structure:Sort
function for bubble sort
class Bubble_Sort { // function for bubble sort public static void BubbleSort(int[] array, int size) {//from ww w .j av a 2s. c o m int temp; for(int i = 0; i < size - 1; i++) { for(int j = 0; j < size - i - 1; j++) { if(array[j] > array[j + 1]) { temp = array[j]; array[j] = array[j + 1]; array[j + 1] = temp; } } } } // function ro print array public static void Print_Array(int[] array, int size) { for(int i = 0; i < size; i++) System.out.print(array[i] + " "); System.out.println(); } public static void main(String[] args) { int[] array = {2, 4, 3, 1, 6, 8, 4}; BubbleSort(array, 7); Print_Array(array, 7); } }