-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBubbleSort.java
45 lines (35 loc) · 1.16 KB
/
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
40
41
42
43
44
45
public class BubbleSort {
public static void main(String args[]) {
int[] vetor = {3,6,8,1,4,9,0};
//System.out.println(" ");
System.out.print("Vetor não ordenado: ");
mostrarVetor(vetor);
System.out.println("");
System.out.println("\nOrdenações: ");
ordenarVetor(vetor);
System.out.print("\nVetor ordenado por Bubble sort: ");
mostrarVetor(vetor);
}
public static void ordenarVetor(int[] vetor) {
for(int i = 0; i < vetor.length - 1; i++) {
boolean estaOrdenado = true;
for(int j = 0; j < vetor.length - 1 - i; j++) {
if(vetor[j] > vetor[j + 1]) {
int aux = vetor[j];
vetor[j] = vetor[j + 1];
vetor[j + 1] = aux;
estaOrdenado = false;
mostrarVetor(vetor);
System.out.println("");
}
}
if(estaOrdenado)
break;
}
}
public static void mostrarVetor(int[] vetor) {
for(int num : vetor) {
System.out.print(num + " ");
}
}
}