diff --git a/BubbleSort.java b/BubbleSort.java new file mode 100644 index 0000000..9ba9c71 --- /dev/null +++ b/BubbleSort.java @@ -0,0 +1,16 @@ +public class BubbleSortExample { + static void bubbleSort(int[] arr) { + int n = arr.length; + int temp = 0; + for(int i=0; i < n; i++){ + for(int j=1; j < (n-i); j++){ + if(arr[j-1] > arr[j]){ + temp = arr[j-1]; + arr[j-1] = arr[j]; + arr[j] = temp; + } + + } + } + + }