-
Notifications
You must be signed in to change notification settings - Fork 0
/
burbuja1
44 lines (35 loc) · 1.32 KB
/
burbuja1
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
package burbuja;
import java.util.Scanner;
import javax.swing.JOptionPane;
public class Burbuja{
public static void main(String[] args){
Scanner entrada = new Scanner(System.in);
int arreglo[],nElementos,aux;
nElementos = Integer.parseInt(JOptionPane.showInputDialog("Digite la cantidad de elementos"));
arreglo = new int[nElementos];
for (int i=0;i<nElementos;i++){
System.out.println((i+1)+". Digite un numero: ");
arreglo[i] = entrada.nextInt();
}
//Creamos el metodo burbuja
for(int i=0;i<(nElementos-1);i++){
for (int j=0;j<(nElementos-1);j++){
if(arreglo[j] > arreglo[j+1]){
aux = arreglo[j];
arreglo[j] = arreglo[j+1];
arreglo[j+1] = aux;
}
}
}
//Mostramos el arreglo ordenado en forma creciente
System.out.print("\nArreglo Ordenado de forma creciente: ");
for(int i=0;i<nElementos;i++){
System.out.print(arreglo[i]+" , ");
}
System.out.print("\nArreglo ordenado en forma decreciente: ");
for(int i=(nElementos-1);i>=0;i--){
System.out.print(arreglo[i]+" , ");
}
System.out.println("");
}
}