Added shell sort.
This commit is contained in:
parent
1a30000654
commit
82f018eaa1
@ -210,4 +210,40 @@ public class Array {
|
|||||||
|
|
||||||
return cambio;
|
return cambio;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ordenar el array usando shell.
|
||||||
|
* @param paso boolean: Si es verdad, solo hago en paso del ordenamiento, sino ordenear todos los elementos.
|
||||||
|
* @return boolean: Verdad si algo cambió, sino falso.
|
||||||
|
*/
|
||||||
|
public boolean shell(boolean paso) {
|
||||||
|
boolean cambio = false;
|
||||||
|
|
||||||
|
int j, i;
|
||||||
|
String temp;
|
||||||
|
|
||||||
|
int h = 1;
|
||||||
|
while (h <= size() / 3) {
|
||||||
|
h = h * 3 + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while (h > 0) {
|
||||||
|
for (i=h; i < size(); i++) {
|
||||||
|
temp = array[i];
|
||||||
|
j = i;
|
||||||
|
while (j > h-1 && Integer.valueOf(array[j-h]) >= Integer.valueOf(temp)) {
|
||||||
|
array[j] = array[j-h];
|
||||||
|
j -= h;
|
||||||
|
cambio = true;
|
||||||
|
}
|
||||||
|
array[j] = temp;
|
||||||
|
if (paso && cambio) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h = (h-1) / 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
return cambio;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -22,12 +22,12 @@ public class ShellController implements Initializable {
|
|||||||
/**
|
/**
|
||||||
* Donde poner el contenido de array.
|
* Donde poner el contenido de array.
|
||||||
*/
|
*/
|
||||||
@FXML private HBox contenidoSeleccion;
|
@FXML private HBox contenidoShell;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Donde va el codigo a mostrar a la pantalla.
|
* Donde va el codigo a mostrar a la pantalla.
|
||||||
*/
|
*/
|
||||||
@FXML private Text codigoSeleccion;
|
@FXML private Text codigoShell;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* La escena donde está cosas graficas.
|
* La escena donde está cosas graficas.
|
||||||
@ -71,7 +71,7 @@ public class ShellController implements Initializable {
|
|||||||
numero = random.nextInt(rango) + minimo;
|
numero = random.nextInt(rango) + minimo;
|
||||||
}
|
}
|
||||||
array.insertar(numero);
|
array.insertar(numero);
|
||||||
contenidoSeleccion.getChildren().addAll(Grafico.crearCaja(colores, String.valueOf(i), String.valueOf(numero)));
|
contenidoShell.getChildren().addAll(Grafico.crearCaja(colores, String.valueOf(i), String.valueOf(numero)));
|
||||||
colores.siguinteColor();
|
colores.siguinteColor();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -113,10 +113,10 @@ public class ShellController implements Initializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Mostrar el codigo
|
// Mostrar el codigo
|
||||||
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/seleccion/ordenar")).useDelimiter("\\Z").next();
|
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/shell/ordenar")).useDelimiter("\\Z").next();
|
||||||
codigoSeleccion.setText(codigoTexto);
|
codigoShell.setText(codigoTexto);
|
||||||
|
|
||||||
if (!array.seleccion(true)) {
|
if (!array.shell(true)) {
|
||||||
errorYaOrdenado();
|
errorYaOrdenado();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -133,10 +133,10 @@ public class ShellController implements Initializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Mostrar el codigo
|
// Mostrar el codigo
|
||||||
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/seleccion/ordenar")).useDelimiter("\\Z").next();
|
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/shell/ordenar")).useDelimiter("\\Z").next();
|
||||||
codigoSeleccion.setText(codigoTexto);
|
codigoShell.setText(codigoTexto);
|
||||||
|
|
||||||
if (!array.seleccion(false)) {
|
if (!array.shell(false)) {
|
||||||
errorYaOrdenado();
|
errorYaOrdenado();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,7 +150,7 @@ public class ShellController implements Initializable {
|
|||||||
ButtonType botonCerrar = new ButtonType(resourceBundle.getString("cerrar"), ButtonBar.ButtonData.OK_DONE);
|
ButtonType botonCerrar = new ButtonType(resourceBundle.getString("cerrar"), ButtonBar.ButtonData.OK_DONE);
|
||||||
Dialog<String> dialog = new Dialog<>();
|
Dialog<String> dialog = new Dialog<>();
|
||||||
dialog.setTitle(resourceBundle.getString("error"));
|
dialog.setTitle(resourceBundle.getString("error"));
|
||||||
dialog.setContentText(resourceBundle.getString("seleccionYaOrdenado"));
|
dialog.setContentText(resourceBundle.getString("shellYaOrdenado"));
|
||||||
dialog.getDialogPane().getButtonTypes().add(botonCerrar);
|
dialog.getDialogPane().getButtonTypes().add(botonCerrar);
|
||||||
dialog.show();
|
dialog.show();
|
||||||
}
|
}
|
||||||
@ -159,7 +159,7 @@ public class ShellController implements Initializable {
|
|||||||
* Crear el array de temaño 10.
|
* Crear el array de temaño 10.
|
||||||
*/
|
*/
|
||||||
private void initializeScene() {
|
private void initializeScene() {
|
||||||
scene = contenidoSeleccion.getScene();
|
scene = contenidoShell.getScene();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,7 +6,7 @@ tituloCola=Cola
|
|||||||
tituloBurbuja=Burbuja
|
tituloBurbuja=Burbuja
|
||||||
tituloInsercion=Inserci\u00F3n
|
tituloInsercion=Inserci\u00F3n
|
||||||
tituloSeleccion=Selecci\u00F3n
|
tituloSeleccion=Selecci\u00F3n
|
||||||
tutuloShell=Shell
|
tituloShell=Shell
|
||||||
|
|
||||||
estructuras=Estructuras
|
estructuras=Estructuras
|
||||||
array=Array
|
array=Array
|
||||||
|
25
src/cl/cromer/estructuras/code/shell/ordenar
Normal file
25
src/cl/cromer/estructuras/code/shell/ordenar
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
public void shell() {
|
||||||
|
int i, j;
|
||||||
|
int temp;
|
||||||
|
|
||||||
|
int h = 1;
|
||||||
|
while (h <= elementos / 3) {
|
||||||
|
// Sumatorio de (h * 3 + 1)
|
||||||
|
h = h * 3 + 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mientras que h es mayor que 0.
|
||||||
|
while (h > 0) {
|
||||||
|
for (i = h; i < elementos; i++) {
|
||||||
|
temp = array[i];
|
||||||
|
j = i;
|
||||||
|
while (j > h-1 && array[j-h] >= temp) {
|
||||||
|
// Ordenar dento el "shell"
|
||||||
|
array[j] = array[j-h];
|
||||||
|
j -= h;
|
||||||
|
}
|
||||||
|
array[j] = temp;
|
||||||
|
}
|
||||||
|
h = (h-1) / 3;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user