-
Notifications
You must be signed in to change notification settings - Fork 0
/
InsertionSort.java
36 lines (33 loc) · 1.17 KB
/
InsertionSort.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
import java.util.Random;
public class InsertionSort {
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(50);
}
//ordenação
int posAnterior, valor;
for (int posAtual = 1; posAtual < vetor.length; posAtual++) {
valor = vetor[posAtual];
posAnterior = posAtual - 1;
mostraVetor(vetor);
while ((posAnterior >= 0) && (vetor[posAnterior] > valor)) {
vetor[posAnterior + 1] = vetor[posAnterior];
posAnterior = posAnterior - 1;
}
vetor[posAnterior + 1] = valor;
}
mostraVetor(vetor);
}
//impressão dos valores ordenados
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("]");
}
}