-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathBubbleSort.java
40 lines (32 loc) · 994 Bytes
/
BubbleSort.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Bubble sort algorithm in Java
public class Main {
// Array of integers
static int[] arr = { 76, 22, 21, 96, 70, 20 };
// Bubble Sort
public static void main(String[] args) {
// Bubble Sort
bubbleSort(arr);
}
static void bubbleSort(int[] arr) {
// Bubble Sort
// your code here
// print the sorted array
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]){
//swap elements
temp = arr[j-1];
arr[j-1] = arr[j];
arr[j] = temp;
}
}
}
for (int i=0;i<n;i++){
System.out.println(arr[i]);
}
}
}
// Output:
// [20, 21, 22, 70, 76, 96]