-
Notifications
You must be signed in to change notification settings - Fork 0
/
BubbleSort.java
41 lines (37 loc) · 1.24 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
import java.util.Random;
public class BubbleSort {
public static void main(String[] args) {
Random gerador = new Random();
int[] vetor = new int[10];
//random pra preencher o vetor
for (int x = 0; x < vetor.length; x++) {
vetor[x] = gerador.nextInt(250);
}
mostraVetor(vetor);
int tamanho = vetor.length;
int comparacoes = 0;
int trocas = 0;
for (int i = tamanho - 1; i >= 1; i--){
for (int j = 0; j < i; j++){
comparacoes++;
if (vetor[j] > vetor[j + 1]){
int aux = vetor[j];
vetor[j] = vetor[j +1];
vetor[j + 1] = aux;
trocas++;
}
mostraVetor(vetor);
}
}
mostraVetor(vetor);
System.out.println("Comparações: " + comparacoes + "\nTrocas: " + trocas);
}
private static void mostraVetor(int[] v) {
System.out.print("VETOR: [");
for (int cont = 0; cont < v.length; cont++){
System.out.print(v[cont]);
if (cont < v.length -1) System.out.print(",");
}
System.out.println("]");
}
}