Reordered code.

This commit is contained in:
Chris Cromer 2016-07-03 14:02:10 -04:00
parent fe61cf4c78
commit 788db3dbb9
29 changed files with 1965 additions and 1923 deletions

View File

@ -27,10 +27,17 @@
<option name="name" value="Class-Path" />
<option name="value" value="/cl/cromer/estructuras" />
</JavaFxManifestAttribute>
<JavaFxManifestAttribute>
<option name="name" value="Codebase" />
<option name="value" value="*.cromer.cl 127.0.0.1" />
</JavaFxManifestAttribute>
<JavaFxManifestAttribute>
<option name="name" value="Application-Name" />
<option name="value" value="Estructuras de Datos" />
</JavaFxManifestAttribute>
</list>
</option>
<option name="description" value="" />
<option name="enabledSigning" value="true" />
<option name="description" value="Esta aplicación muestra varios tipos de estrucuras de datos visualmente." />
<option name="height" value="768" />
<option name="htmlParamFile" value="" />
<option name="keystore" value="" />

View File

@ -2,8 +2,12 @@
<project version="4">
<component name="ProjectCodeStyleSettingsManager">
<option name="PER_PROJECT_SETTINGS">
<value />
<value>
<XML>
<option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
</XML>
</value>
</option>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default (1)" />
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Cromer" />
</component>
</project>

View File

@ -97,8 +97,7 @@
</path>
<target name="register.custom.compilers">
<taskdef name="javac2" classname="com.intellij.ant.Javac2" classpathref="javac2.classpath"/>
<taskdef name="instrumentIdeaExtensions" classname="com.intellij.ant.InstrumentIdeaExtensions"
classpathref="javac2.classpath"/>
<taskdef name="instrumentIdeaExtensions" classname="com.intellij.ant.InstrumentIdeaExtensions" classpathref="javac2.classpath"/>
</target>
<!-- Modules -->
@ -115,10 +114,8 @@
<property name="compiler.args.estructuras_de_datos" value="-encoding UTF-8 -source 8 -target 8 ${compiler.args}"/>
<property name="estructuras_de_datos.output.dir"
value="${module.estructuras_de_datos.basedir}/out/production/Estructuras de Datos"/>
<property name="estructuras_de_datos.testoutput.dir"
value="${module.estructuras_de_datos.basedir}/out/test/Estructuras de Datos"/>
<property name="estructuras_de_datos.output.dir" value="${module.estructuras_de_datos.basedir}/out/production/Estructuras de Datos"/>
<property name="estructuras_de_datos.testoutput.dir" value="${module.estructuras_de_datos.basedir}/out/test/Estructuras de Datos"/>
<path id="estructuras_de_datos.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
@ -158,16 +155,11 @@
</path>
<target name="compile.module.estructuras_de_datos"
depends="compile.module.estructuras_de_datos.production,compile.module.estructuras_de_datos.tests"
description="Compile module Estructuras de Datos"/>
<target name="compile.module.estructuras_de_datos" depends="compile.module.estructuras_de_datos.production,compile.module.estructuras_de_datos.tests" description="Compile module Estructuras de Datos"/>
<target name="compile.module.estructuras_de_datos.production" depends="register.custom.compilers"
description="Compile module Estructuras de Datos; production classes">
<target name="compile.module.estructuras_de_datos.production" depends="register.custom.compilers" description="Compile module Estructuras de Datos; production classes">
<mkdir dir="${estructuras_de_datos.output.dir}"/>
<javac2 destdir="${estructuras_de_datos.output.dir}" debug="${compiler.debug}"
nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true"
executable="${module.jdk.bin.estructuras_de_datos}/javac">
<javac2 destdir="${estructuras_de_datos.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.estructuras_de_datos}/javac">
<compilerarg line="${compiler.args.estructuras_de_datos}"/>
<bootclasspath refid="estructuras_de_datos.module.bootclasspath"/>
<classpath refid="estructuras_de_datos.module.production.classpath"/>
@ -183,9 +175,7 @@
</copy>
</target>
<target name="compile.module.estructuras_de_datos.tests"
depends="register.custom.compilers,compile.module.estructuras_de_datos.production"
description="compile module Estructuras de Datos; test classes" unless="skip.tests"/>
<target name="compile.module.estructuras_de_datos.tests" depends="register.custom.compilers,compile.module.estructuras_de_datos.production" description="compile module Estructuras de Datos; test classes" unless="skip.tests"/>
<target name="clean.module.estructuras_de_datos" description="cleanup module">
<delete dir="${estructuras_de_datos.output.dir}"/>
@ -196,41 +186,32 @@
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.estructuras_de_datos, clean.artifact.estructuras_de_datos"
description="cleanup all"/>
<target name="clean" depends="clean.module.estructuras_de_datos, clean.artifact.estructuras_de_datos" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.estructuras_de_datos"
description="build all modules"/>
<target name="build.modules" depends="init, clean, compile.module.estructuras_de_datos" description="build all modules"/>
<target name="init.artifacts">
<property name="artifacts.temp.dir" value="${basedir}/__artifacts_temp"/>
<property name="artifact.output.estructuras_de_datos" value="${basedir}/out/artifacts/Estructuras_de_Datos"/>
<mkdir dir="${artifacts.temp.dir}"/>
<property name="artifact.temp.output.Estructuras_de_Datos"
value="${artifacts.temp.dir}/Estructuras_de_Datos.jar"/>
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml" uri="javafx:com.sun.javafx.tools.ant"
classpath="${jdk.home.1.8}/lib/ant-javafx.jar"/>
<property name="artifact.temp.output.Estructuras_de_Datos" value="${artifacts.temp.dir}/Estructuras_de_Datos.jar"/>
<taskdef resource="com/sun/javafx/tools/ant/antlib.xml" uri="javafx:com.sun.javafx.tools.ant" classpath="${jdk.home.1.8}/lib/ant-javafx.jar"/>
</target>
<target name="clean.artifact.estructuras_de_datos" description="clean Estructuras de Datos artifact output">
<delete dir="${artifact.output.estructuras_de_datos}"/>
</target>
<target xmlns:fx="javafx:com.sun.javafx.tools.ant" name="artifact.estructuras_de_datos"
depends="init.artifacts, compile.module.estructuras_de_datos"
description="Build &#39;Estructuras de Datos&#39; artifact">
<target name="artifact.estructuras_de_datos" depends="init.artifacts, compile.module.estructuras_de_datos" description="Build &#39;Estructuras de Datos&#39; artifact" xmlns:fx="javafx:com.sun.javafx.tools.ant">
<mkdir dir="${artifact.output.estructuras_de_datos}"/>
<copy todir="${artifact.temp.output.Estructuras_de_Datos}">
<fileset dir="${estructuras_de_datos.output.dir}"/>
</copy>
<fx:fileset id="all_but_Estructuras_de_Datos" dir="${artifact.temp.output.Estructuras_de_Datos}"
includes="**/*.jar">
<fx:fileset id="all_but_Estructuras_de_Datos" dir="${artifact.temp.output.Estructuras_de_Datos}" includes="**/*.jar">
<exclude name="Estructuras_de_Datos.jar"/>
</fx:fileset>
<fx:fileset id="all_Estructuras_de_Datos" dir="${artifact.temp.output.Estructuras_de_Datos}"
includes="**/*.jar"/>
<fx:application id="Estructuras_de_Datos_id" name="Estructuras de Datos"
mainClass="cl.cromer.estructuras.Main"/>
<fx:fileset id="all_Estructuras_de_Datos" dir="${artifact.temp.output.Estructuras_de_Datos}" includes="**/*.jar"/>
<fx:application id="Estructuras_de_Datos_id" name="Estructuras de Datos" mainClass="cl.cromer.estructuras.Main"/>
<fx:jar destfile="${artifact.temp.output.Estructuras_de_Datos}/Estructuras_de_Datos.jar">
<fx:application refid="Estructuras_de_Datos_id"/>
<fileset dir="${artifact.temp.output.Estructuras_de_Datos}" excludes="**/*.jar"/>
@ -240,13 +221,13 @@
<manifest>
<attribute name="Created-By" value="Chris Cromer"/>
<attribute name="Class-Path" value="/cl/cromer/estructuras"/>
<attribute name="Codebase" value="*.cromer.cl 127.0.0.1"/>
<attribute name="Application-Name" value="Estructuras de Datos"/>
</manifest>
</fx:jar>
<fx:deploy width="1024" height="768" updatemode="background"
outdir="${artifact.temp.output.Estructuras_de_Datos}/deploy" outfile="Estructuras_de_Datos"
nativeBundles="all">
<fx:deploy width="1024" height="768" updatemode="background" outdir="${artifact.temp.output.Estructuras_de_Datos}/deploy" outfile="Estructuras_de_Datos" nativeBundles="all">
<fx:application refid="Estructuras_de_Datos_id"/>
<fx:info title="Estructuras de Datos" vendor="Chris Cromer"/>
<fx:info title="Estructuras de Datos" vendor="Chris Cromer" description="Esta aplicación muestra varios tipos de estrucuras de datos visualmente."/>
<fx:resources>
<fx:fileset refid="all_Estructuras_de_Datos"/>
</fx:resources>

View File

@ -1,7 +1,8 @@
Manifest-Version: 1.0
Permissions: sandbox
Codebase: *.cromer.cl 127.0.0.1
JavaFX-Version: 8.0
Class-Path: /cl/cromer/estructuras
Created-By: Chris Cromer
Main-Class: cl.cromer.estructuras.Main
Application-Name: Estructuras de Datos

View File

@ -52,6 +52,28 @@ final public class Array {
this.ordered = ordered;
}
/**
* Insertar un valor al array.
*
* @param valor int: El valor a insertar.
*
* @return boolean: Verdad si fue exitoso, sino falso.
*/
public boolean insertar(int valor) {
for (int i = 0; i < array.length; i++) {
if (array[i] == null) {
array[i] = String.valueOf(valor);
size++;
return true;
}
else if (array[i].equals(String.valueOf(valor))) {
// Ya existe el valor en el array
return false;
}
}
return false;
}
/**
* Eliminar un valor del array si existe.
*
@ -85,18 +107,29 @@ final public class Array {
}
/**
* Devolver el valor que está guardado en cada indice del array. Se usa para construir la grafica.
* Buscar si existe un valor dentro el array.
*
* @param indice int: El indice que desea ver.
* @param valor int: Valor a buscar.
*
* @return String: El valor que está en dicho indice.
* @return int: Devuelve el indice donde fue encontrado, o -1 si no fue encontrado.
*/
public String getIndice(int indice) {
if (indice >= 0 && indice < array.length) {
return array[indice];
public int buscar(int valor) {
for (int i = 0; i < array.length; i++) {
if (array[i] != null && array[i].equals(String.valueOf(valor))) {
// Se encontró
return i;
}
else {
return null;
}
// No se encontró
return - 1;
}
/**
* Borrar el array para que sea como nuevo.
*/
public void nuevo() {
for (int i = 0; i < size(); i++) {
array[i] = null;
}
}
@ -118,6 +151,22 @@ final public class Array {
}
}
/**
* Devolver el valor que está guardado en cada indice del array. Se usa para construir la grafica.
*
* @param indice int: El indice que desea ver.
*
* @return String: El valor que está en dicho indice.
*/
public String getIndice(int indice) {
if (indice >= 0 && indice < array.length) {
return array[indice];
}
else {
return null;
}
}
/**
* Devolver la cantidad de elementos en el array.
*
@ -127,55 +176,6 @@ final public class Array {
return size;
}
/**
* Buscar si existe un valor dentro el array.
*
* @param valor int: Valor a buscar.
*
* @return int: Devuelve el indice donde fue encontrado, o -1 si no fue encontrado.
*/
public int buscar(int valor) {
for (int i = 0; i < array.length; i++) {
if (array[i] != null && array[i].equals(String.valueOf(valor))) {
// Se encontró
return i;
}
}
// No se encontró
return - 1;
}
/**
* Insertar un valor al array.
*
* @param valor int: El valor a insertar.
*
* @return boolean: Verdad si fue exitoso, sino falso.
*/
public boolean insertar(int valor) {
for (int i = 0; i < array.length; i++) {
if (array[i] == null) {
array[i] = String.valueOf(valor);
size++;
return true;
}
else if (array[i].equals(String.valueOf(valor))) {
// Ya existe el valor en el array
return false;
}
}
return false;
}
/**
* Borrar el array.
*/
public void nuevo() {
for (int i = 0; i < size(); i++) {
array[i] = null;
}
}
/**
* Ordenar el array usando burbuja.
*

View File

@ -88,30 +88,6 @@ public class ArrayController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10. La scene está usado para saber si es de tipo ordenado o simple segun el ménu.
*/
private void initializeArray() {
scene = contenidoArray.getScene();
grafico = new Grafico(scene);
this.array = new Array(10);
ArrayTipos arrayTipos = (ArrayTipos) scene.getUserData();
if (arrayTipos.getTipo() == ArrayTipos.ORDENADO) {
this.array.setOrdered(true);
}
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Vaciar el array de todos los valores.
*/
@ -247,4 +223,28 @@ public class ArrayController implements Initializable {
Main.mostrarError(resourceBundle.getString("arrayNoValor"), resourceBundle);
}
}
/**
* Crear el array de tamaño 10. La scene está usado para saber si es de tipo ordenado o simple segun el ménu.
*/
private void initializeArray() {
scene = contenidoArray.getScene();
grafico = new Grafico(scene);
this.array = new Array(10);
ArrayTipos arrayTipos = (ArrayTipos) scene.getUserData();
if (arrayTipos.getTipo() == ArrayTipos.ORDENADO) {
this.array.setOrdered(true);
}
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -82,23 +82,6 @@ public class BurbujaController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoBurbuja.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class BurbujaController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoBurbuja.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -26,6 +26,30 @@ final public class Cola {
size = 0;
}
/**
* Push un valor en la cola encima.
*
* @param valor int: El valor a push.
*/
public void push(int valor) {
if (this.cola != null) {
String cola[] = new String[this.cola.length + 1];
int i;
for (i = 0; i < this.cola.length; i++) {
cola[i] = this.cola[i];
}
cola[i] = String.valueOf(valor);
this.cola = cola;
size++;
}
else {
String pila[] = new String[1];
pila[0] = String.valueOf(valor);
this.cola = pila;
size++;
}
}
/**
* Pop un valor del principio de la cola.
*
@ -59,6 +83,22 @@ final public class Cola {
}
}
/**
* Llenar la cola con valores al azar.
*/
@SuppressWarnings("Duplicates")
public void llenar() {
Random random = new Random();
int maximo = 99;
int minimo = 0;
int rango = maximo - minimo + 1;
for (int i = size(); i < 10; i++) {
int numero = random.nextInt(rango) + minimo;
push(numero);
}
}
/**
* Devolver la cantidad de elementos que están en la cola.
*
@ -83,44 +123,4 @@ final public class Cola {
return null;
}
}
/**
* Llenar la cola con valores al azar.
*/
@SuppressWarnings("Duplicates")
public void llenar() {
Random random = new Random();
int maximo = 99;
int minimo = 0;
int rango = maximo - minimo + 1;
for (int i = size(); i < 10; i++) {
int numero = random.nextInt(rango) + minimo;
push(numero);
}
}
/**
* Push un valor en la cola encima.
*
* @param valor int: El valor a push.
*/
public void push(int valor) {
if (this.cola != null) {
String cola[] = new String[this.cola.length + 1];
int i;
for (i = 0; i < this.cola.length; i++) {
cola[i] = this.cola[i];
}
cola[i] = String.valueOf(valor);
this.cola = cola;
size++;
}
else {
String pila[] = new String[1];
pila[0] = String.valueOf(valor);
this.cola = pila;
size++;
}
}
}

View File

@ -90,17 +90,6 @@ public class ColaController implements Initializable {
generarGrafico();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(cola.getIndice(i));
}
}
/**
* Vaciar la cola de todos los valores.
*/
@ -203,4 +192,15 @@ public class ColaController implements Initializable {
Main.mostrarError(resourceBundle.getString("colaVacia"), resourceBundle);
}
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(cola.getIndice(i));
}
}
}

View File

@ -82,23 +82,6 @@ public class InsercionController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoInsercion.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class InsercionController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoInsercion.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -72,37 +72,6 @@ final public class ListaEnlazada {
}
}
/**
* Buscar una llave en la lista.
*
* @param llave int: La llave a buscar.
*
* @return Enlace: El enlace que contiene la llave buscada.
*/
public Enlace buscar(int llave) {
if (this.lista != null) {
// La lista no es vacia
Enlace lista = this.lista;
while (lista.getLlave() != llave) {
// Buscar hasta la llave es encontrado
if (lista.getSiguiente() != null) {
// Buscar en la siguiente enlace
lista = (Enlace) lista.getSiguiente();
}
else {
// No se encuentra
return null;
}
}
// Se encontró
return lista;
}
else {
// La lista es vacia, nada para buscar
return null;
}
}
/**
* Eliminar un enlace de la lista.
*
@ -148,6 +117,37 @@ final public class ListaEnlazada {
}
}
/**
* Buscar una llave en la lista.
*
* @param llave int: La llave a buscar.
*
* @return Enlace: El enlace que contiene la llave buscada.
*/
public Enlace buscar(int llave) {
if (this.lista != null) {
// La lista no es vacia
Enlace lista = this.lista;
while (lista.getLlave() != llave) {
// Buscar hasta la llave es encontrado
if (lista.getSiguiente() != null) {
// Buscar en la siguiente enlace
lista = (Enlace) lista.getSiguiente();
}
else {
// No se encuentra
return null;
}
}
// Se encontró
return lista;
}
else {
// La lista es vacia, nada para buscar
return null;
}
}
/**
* Devolver un enlace con su llave y valor.
*

View File

@ -82,47 +82,6 @@ final public class ListaEnlazadaCircular {
}
}
/**
* Buscar una llave en la lista.
*
* @param llave int: La llave a buscar.
*
* @return Enlace: El enlace que contiene la llave.
*/
public Enlace buscar(int llave) {
if (this.primer != null) {
// La lista no es vacia
Enlace lista = this.primer;
int i = 0;
while (lista.getLlave() != llave && i < size()) {
// Buscar en la sigenute enlace hasta el final.
lista = (Enlace) lista.getSiguiente();
i++;
}
if (lista.getLlave() == llave) {
// Devoler el enlace encontrado.
return lista;
}
else {
// No se encontró.
return null;
}
}
else {
// La lista es vacia, nada para buscar
return null;
}
}
/**
* Devolver la cantidad de enlaces que están en la lista.
*
* @return int: La cantidad.
*/
public int size() {
return size;
}
/**
* Eliminar un enlace de la lista.
*
@ -169,6 +128,47 @@ final public class ListaEnlazadaCircular {
}
}
/**
* Buscar una llave en la lista.
*
* @param llave int: La llave a buscar.
*
* @return Enlace: El enlace que contiene la llave.
*/
public Enlace buscar(int llave) {
if (this.primer != null) {
// La lista no es vacia
Enlace lista = this.primer;
int i = 0;
while (lista.getLlave() != llave && i < size()) {
// Buscar en la sigenute enlace hasta el final.
lista = (Enlace) lista.getSiguiente();
i++;
}
if (lista.getLlave() == llave) {
// Devoler el enlace encontrado.
return lista;
}
else {
// No se encontró.
return null;
}
}
else {
// La lista es vacia, nada para buscar
return null;
}
}
/**
* Devolver la cantidad de enlaces que están en la lista.
*
* @return int: La cantidad.
*/
public int size() {
return size;
}
/**
* Devolver un enlace con su llave y valor.
*

View File

@ -125,6 +125,151 @@ public class ListaEnlazdaController implements Initializable {
generarGrafico();
}
/**
* Vaciar la lista de todos los valores.
*/
@FXML
protected void botonVaciar() {
if (scene == null) {
initializeLista();
}
nuevaLista();
generarGrafico();
}
/**
* Insertar un valor a la lista y mostrar el codigo en la pantalla.
*/
@FXML
protected void botonInsertar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/insertar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
try {
boolean exito;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
exito = listaEnlazada.insertar(Integer.valueOf(valorLista.getText()));
}
else {
exito = listaEnlazadaCircular.insertar(Integer.valueOf(valorLista.getText()));
}
if (exito) {
valorLista.setText("");
generarGrafico();
}
else {
Main.mostrarError(resourceBundle.getString("listaLlaveExiste"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
/**
* Eliminar un valor de la lista si existe y mostrar el codigo en la pantalla.
*/
@FXML
protected void botonEliminar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/eliminar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
try {
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
boolean exito;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
exito = listaEnlazada.eliminar(Integer.valueOf(valorLista.getText()));
}
else {
exito = listaEnlazadaCircular.eliminar(Integer.valueOf(valorLista.getText()));
}
if (exito) {
valorLista.setText("");
generarGrafico();
}
else {
Main.mostrarError(resourceBundle.getString("listaNoEsta"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
/**
* Buscar si existe una llave en la lista y mostrar el codigo en la pantalla
* Si existe la llave destacarla.
*/
@FXML
protected void botonBuscar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/buscar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
try {
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
Enlace enlace;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
enlace = listaEnlazada.buscar(Integer.valueOf(valorLista.getText()));
}
else {
enlace = listaEnlazadaCircular.buscar(Integer.valueOf(valorLista.getText()));
}
if (enlace != null) {
generarGrafico();
grafico = new Grafico(scene);
grafico.destacar("#caja_" + enlace.getLlave(), Grafico.RECTANGULO);
grafico.destacar("#texto_" + enlace.getLlave(), Grafico.TEXTO);
}
else {
Main.mostrarError(resourceBundle.getString("listaNoEsta"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
/**
* Crear una lista vacia.
*/
@ -135,6 +280,24 @@ public class ListaEnlazdaController implements Initializable {
nuevaLista();
}
private String getTipoString() {
String tipo;
switch (listaEnlazadaTipos.getTipo()) {
case ListaEnlazadaTipos.SIMPLE:
tipo = "Simple";
break;
case ListaEnlazadaTipos.CIRCULAR:
tipo = "Circular";
break;
case ListaEnlazadaTipos.DOBLEMENTE_ENLAZADA:
tipo = "Doble";
break;
default:
tipo = "Simple";
}
return tipo;
}
/**
* Poner los valores en el grafico.
*/
@ -225,167 +388,4 @@ public class ListaEnlazdaController implements Initializable {
Grafico.crearFlechaAbajo()
);
}
/**
* Vaciar la lista de todos los valores.
*/
@FXML
protected void botonVaciar() {
if (scene == null) {
initializeLista();
}
nuevaLista();
generarGrafico();
}
/**
* Insertar un valor a la lista y mostrar el codigo en la pantalla.
*/
@FXML
protected void botonInsertar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/insertar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
try {
boolean exito;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
exito = listaEnlazada.insertar(Integer.valueOf(valorLista.getText()));
}
else {
exito = listaEnlazadaCircular.insertar(Integer.valueOf(valorLista.getText()));
}
if (exito) {
valorLista.setText("");
generarGrafico();
}
else {
Main.mostrarError(resourceBundle.getString("listaLlaveExiste"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
private String getTipoString() {
String tipo;
switch (listaEnlazadaTipos.getTipo()) {
case ListaEnlazadaTipos.SIMPLE:
tipo = "Simple";
break;
case ListaEnlazadaTipos.CIRCULAR:
tipo = "Circular";
break;
case ListaEnlazadaTipos.DOBLEMENTE_ENLAZADA:
tipo = "Doble";
break;
default:
tipo = "Simple";
}
return tipo;
}
/**
* Eliminar un valor de la lista si existe y mostrar el codigo en la pantalla.
*/
@FXML
protected void botonEliminar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/eliminar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
try {
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
boolean exito;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
exito = listaEnlazada.eliminar(Integer.valueOf(valorLista.getText()));
}
else {
exito = listaEnlazadaCircular.eliminar(Integer.valueOf(valorLista.getText()));
}
if (exito) {
valorLista.setText("");
generarGrafico();
}
else {
Main.mostrarError(resourceBundle.getString("listaNoEsta"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
/**
* Buscar si existe una llave en la lista y mostrar el codigo en la pantalla
* Si existe la llave destacarla.
*/
@FXML
protected void botonBuscar() {
if (scene == null) {
initializeLista();
}
String tipo = getTipoString();
// Mostrar el codigo
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/listaEnlazada" + tipo + "/buscar")).useDelimiter("\\Z").next();
codigoLista.setText(codigoTexto);
try {
if (valorLista.getText() != null && ! valorLista.getText().trim().equals("")) {
Enlace enlace;
if (listaEnlazadaTipos.getTipo() != ListaEnlazadaTipos.CIRCULAR) {
enlace = listaEnlazada.buscar(Integer.valueOf(valorLista.getText()));
}
else {
enlace = listaEnlazadaCircular.buscar(Integer.valueOf(valorLista.getText()));
}
if (enlace != null) {
generarGrafico();
grafico = new Grafico(scene);
grafico.destacar("#caja_" + enlace.getLlave(), Grafico.RECTANGULO);
grafico.destacar("#texto_" + enlace.getLlave(), Grafico.TEXTO);
}
else {
Main.mostrarError(resourceBundle.getString("listaNoEsta"), resourceBundle);
}
}
else {
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
catch (NumberFormatException exception) {
// El error no es fatal, sigue
Logs.log(Level.WARNING, "No es tipo int.");
Main.mostrarError(resourceBundle.getString("listaNoValor"), resourceBundle);
}
}
}

View File

@ -30,6 +30,36 @@ public class Main extends Application {
*/
static final public boolean DEBUG = false;
/**
* Crear el stage y la scene para la aplicación grafica.
*
* @param stage Stage: El primer stage donde va todas las cosas visuales.
*/
@Override
public void start(Stage stage) {
Locale locale = new Locale("es", "ES");
ResourceBundle resourceBundle = ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale);
try {
Parent parent = FXMLLoader.load(getClass().getResource("/cl/cromer/estructuras/fxml/main.fxml"), ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale));
stage.setTitle(resourceBundle.getString("titulo"));
Scene scene = new Scene(parent, 1024, 768);
scene.getStylesheets().add("/cl/cromer/estructuras/css/main.css");
stage.setScene(scene);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
//stage.setMaximized(true);
stage.setMinHeight(640);
stage.setMinWidth(768);
stage.getIcons().add(new Image(getClass().getResourceAsStream("/cl/cromer/estructuras/images/icon.png")));
stage.show();
}
/**
* Inicilizar el logeo y lanzar la interfaz grafica.
*
@ -43,6 +73,17 @@ public class Main extends Application {
launch(args);
}
/**
* Cambiar el icono de una ventana.
*
* @param dialog Dialog: El Dialog a cambiar.
* @param clase Class: La clase usado para abrir el Stream.
*/
static public void setIcon(Dialog dialog, Class clase) {
Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();
stage.getIcons().add(new Image(clase.getResourceAsStream("/cl/cromer/estructuras/images/icon.png")));
}
/**
* Mostrar una ventana con mensaje en la pantalla.
*
@ -59,45 +100,4 @@ public class Main extends Application {
Main.setIcon(dialog, Main.class);
dialog.show();
}
/**
* Cambiar el icono de una ventana.
*
* @param dialog Dialog: El Dialog a cambiar.
* @param clase Class: La clase usado para abrir el Stream.
*/
static public void setIcon(Dialog dialog, Class clase) {
Stage stage = (Stage) dialog.getDialogPane().getScene().getWindow();
stage.getIcons().add(new Image(clase.getResourceAsStream("/cl/cromer/estructuras/images/icon.png")));
}
/**
* Crear el stage y la scene para la aplicación grafica.
*
* @param stage Stage: El primer stage donde va todas las cosas visuales.
*/
@Override
public void start(Stage stage) {
Locale locale = new Locale("es", "ES");
ResourceBundle resourceBundle = ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale);
try {
Parent parent = FXMLLoader.load(getClass().getResource("/cl/cromer/estructuras/fxml/main.fxml"), ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale));
stage.setTitle(resourceBundle.getString("titulo"));
Scene scene = new Scene(parent, 1024, 768);
scene.getStylesheets().add("/cl/cromer/estructuras/css/style.css");
stage.setScene(scene);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
//stage.setMaximized(true);
stage.setMinHeight(640);
stage.setMinWidth(768);
stage.getIcons().add(new Image(getClass().getResourceAsStream("/cl/cromer/estructuras/images/icon.png")));
stage.show();
}
}

View File

@ -56,43 +56,11 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloArraySimple"),
"/cl/cromer/estructuras/fxml/array.fxml",
"/cl/cromer/estructuras/css/style.css",
"/cl/cromer/estructuras/css/main.css",
arrayTipos
);
}
/**
* Cargar el fxml, css y titulo.
*
* @param title String: El titulo de la escena.
* @param fxml String: El archivo de fxml.
* @param css String: El archivo de css.
* @param object Object: El objeto a pasar a la nueva escena.
*/
private void loadStage(String title, String fxml, String css, Object object) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
openFXML(fxml, scene, stage);
scene.getStylesheets().add(css);
scene.setUserData(object);
stage.setScene(scene);
stage.setTitle(this.resourceBundle.getString("titulo") + " - " + title);
}
private void openFXML(String fxml, Scene scene, Stage stage) {
try {
Parent parent = FXMLLoader.load(getClass().getResource(fxml), this.resourceBundle);
scene.setRoot(parent);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
}
/**
* Click en Array Ordenado.
*/
@ -102,7 +70,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloArrayOrdenado"),
"/cl/cromer/estructuras/fxml/array.fxml",
"/cl/cromer/estructuras/css/style.css",
"/cl/cromer/estructuras/css/main.css",
arrayTipos
);
}
@ -115,28 +83,10 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloBurbuja"),
"/cl/cromer/estructuras/fxml/burbuja.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
/**
* Cargar el fxml, css y titulo.
*
* @param title String: El titulo de la escena.
* @param fxml String: El archivo de fxml.
* @param css String: El archivo de css.
*/
private void loadStage(String title, String fxml, String css) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
openFXML(fxml, scene, stage);
scene.getStylesheets().add(css);
stage.setScene(scene);
stage.setTitle(this.resourceBundle.getString("titulo") + " - " + title);
}
/**
* Click en Inserción.
*/
@ -145,7 +95,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloInsercion"),
"/cl/cromer/estructuras/fxml/insercion.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -157,7 +107,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloSeleccion"),
"/cl/cromer/estructuras/fxml/seleccion.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -169,7 +119,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloShell"),
"/cl/cromer/estructuras/fxml/shell.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -181,7 +131,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloQuick"),
"/cl/cromer/estructuras/fxml/quick.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -193,7 +143,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloMerge"),
"/cl/cromer/estructuras/fxml/merge.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -206,7 +156,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloListaEnlazadaSimple"),
"/cl/cromer/estructuras/fxml/listaEnlazada.fxml",
"/cl/cromer/estructuras/css/style.css",
"/cl/cromer/estructuras/css/main.css",
listaEnlazadaTipos
);
}
@ -220,7 +170,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloListaEnlazadaCircular"),
"/cl/cromer/estructuras/fxml/listaEnlazada.fxml",
"/cl/cromer/estructuras/css/style.css",
"/cl/cromer/estructuras/css/main.css",
listaEnlazadaTipos
);
}
@ -234,7 +184,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloListaEnlazadaDoble"),
"/cl/cromer/estructuras/fxml/listaEnlazada.fxml",
"/cl/cromer/estructuras/css/style.css",
"/cl/cromer/estructuras/css/main.css",
listaEnlazadaTipos
);
}
@ -247,7 +197,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloPila"),
"/cl/cromer/estructuras/fxml/pila.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -259,7 +209,7 @@ public class MenuController extends VBox implements Initializable {
loadStage(
resourceBundle.getString("tituloCola"),
"/cl/cromer/estructuras/fxml/cola.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/css/main.css"
);
}
@ -270,8 +220,8 @@ public class MenuController extends VBox implements Initializable {
protected void menuHashTable() {
loadStage(
resourceBundle.getString("tituloTablaHash"),
"/cl/cromer/estructuras/fxml/hashTable.fxml",
"/cl/cromer/estructuras/css/style.css"
"/cl/cromer/estructuras/fxml/tablaHash.fxml",
"/cl/cromer/estructuras/css/main.css"
);
}
@ -296,40 +246,10 @@ public class MenuController extends VBox implements Initializable {
Locale locale = new Locale("en", "EN");
ResourceBundle resourceBundle = ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale);
loadStage(
"/cl/cromer/estructuras/fxml/main.fxml",
"/cl/cromer/estructuras/css/style.css",
resourceBundle
);
loadStage(resourceBundle);
}
}
/**
* Cargar el fxml y css.
*
* @param fxml String: El archivo de fxml.
* @param css String: El archivo de css.
* @param resourceBundle ResourceBundle: El idioma nuevo para cambiarlo.
*/
private void loadStage(String fxml, String css, ResourceBundle resourceBundle) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
try {
Parent parent = FXMLLoader.load(getClass().getResource(fxml), resourceBundle);
scene.setRoot(parent);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
scene.getStylesheets().add(css);
stage.setScene(scene);
stage.setTitle(resourceBundle.getString("titulo"));
}
/**
* Click en Español.
*/
@ -351,11 +271,7 @@ public class MenuController extends VBox implements Initializable {
Locale locale = new Locale("es", "ES");
ResourceBundle resourceBundle = ResourceBundle.getBundle("cl.cromer.estructuras.bundles.Idioma", locale);
loadStage(
"/cl/cromer/estructuras/fxml/main.fxml",
"/cl/cromer/estructuras/css/style.css",
resourceBundle
);
loadStage(resourceBundle);
}
}
@ -373,4 +289,78 @@ public class MenuController extends VBox implements Initializable {
Main.setIcon(dialog, getClass());
dialog.show();
}
/**
* Cargar el fxml, css y titulo.
*
* @param title String: El titulo de la escena.
* @param fxml String: El archivo de fxml.
* @param css String: El archivo de css.
*/
private void loadStage(String title, String fxml, String css) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
openFXML(fxml, scene, stage);
scene.getStylesheets().add(css);
stage.setScene(scene);
stage.setTitle(this.resourceBundle.getString("titulo") + " - " + title);
}
/**
* Cargar el fxml, css y titulo y pasar un objeto a la escena nueva.
*
* @param title String: El titulo de la escena.
* @param fxml String: El archivo de fxml.
* @param css String: El archivo de css.
* @param object Object: El objeto a pasar a la nueva escena.
*/
private void loadStage(String title, String fxml, String css, Object object) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
openFXML(fxml, scene, stage);
scene.getStylesheets().add(css);
scene.setUserData(object);
stage.setScene(scene);
stage.setTitle(this.resourceBundle.getString("titulo") + " - " + title);
}
/**
* Cargar el fxml y css cuando el idioma cambia.
*
* @param resourceBundle ResourceBundle: El idioma nuevo para cambiarlo.
*/
private void loadStage(ResourceBundle resourceBundle) {
Scene scene = menuBar.getScene();
Stage stage = (Stage) scene.getWindow();
try {
Parent parent = FXMLLoader.load(getClass().getResource("/cl/cromer/estructuras/fxml/main.fxml"), resourceBundle);
scene.setRoot(parent);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
scene.getStylesheets().add("/cl/cromer/estructuras/css/main.css");
stage.setScene(scene);
stage.setTitle(resourceBundle.getString("titulo"));
}
private void openFXML(String fxml, Scene scene, Stage stage) {
try {
Parent parent = FXMLLoader.load(getClass().getResource(fxml), this.resourceBundle);
scene.setRoot(parent);
}
catch (IOException exception) {
// Este error es fatal, hay que cerrar la aplicación.
Logs.log(Level.SEVERE, "No se pudo abrir el archivo de fxml.");
stage.close();
}
}
}

View File

@ -82,23 +82,6 @@ public class MergeController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoMerge.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class MergeController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoMerge.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -26,6 +26,30 @@ final public class Pila {
size = 0;
}
/**
* Push un valor en la pila encima.
*
* @param valor int: El valor a push.
*/
public void push(int valor) {
if (this.pila != null) {
String pila[] = new String[this.pila.length + 1];
int i;
for (i = 0; i < this.pila.length; i++) {
pila[i] = this.pila[i];
}
pila[i] = String.valueOf(valor);
this.pila = pila;
size++;
}
else {
String pila[] = new String[1];
pila[0] = String.valueOf(valor);
this.pila = pila;
size++;
}
}
/**
* Pop un valor de encima de la pila.
*
@ -44,15 +68,6 @@ final public class Pila {
}
}
/**
* Devolver la cantidad de elementos en la pila.
*
* @return int: La cantidad de elementos.
*/
public int size() {
return size;
}
/**
* Peek al valor que está encima de la pila.
*
@ -67,6 +82,15 @@ final public class Pila {
}
}
/**
* Devolver la cantidad de elementos en la pila.
*
* @return int: La cantidad de elementos.
*/
public int size() {
return size;
}
/**
* Devolver el valor que está en un indice de la pila.
*
@ -98,28 +122,4 @@ final public class Pila {
push(numero);
}
}
/**
* Push un valor en la pila encima.
*
* @param valor int: El valor a push.
*/
public void push(int valor) {
if (this.pila != null) {
String pila[] = new String[this.pila.length + 1];
int i;
for (i = 0; i < this.pila.length; i++) {
pila[i] = this.pila[i];
}
pila[i] = String.valueOf(valor);
this.pila = pila;
size++;
}
else {
String pila[] = new String[1];
pila[0] = String.valueOf(valor);
this.pila = pila;
size++;
}
}
}

View File

@ -90,17 +90,6 @@ public class PilaController implements Initializable {
generarGrafico();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(pila.getIndice(i));
}
}
/**
* Vaciar la pila de todos los valores.
*/
@ -203,4 +192,15 @@ public class PilaController implements Initializable {
Main.mostrarError(resourceBundle.getString("pilaVacia"), resourceBundle);
}
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(pila.getIndice(i));
}
}
}

View File

@ -82,23 +82,6 @@ public class QuickController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoQuick.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class QuickController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoQuick.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -82,23 +82,6 @@ public class SeleccionController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoSeleccion.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class SeleccionController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoSeleccion.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -82,23 +82,6 @@ public class ShellController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoShell.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
/**
* Ordenarlo paso por paso.
*/
@ -138,4 +121,21 @@ public class ShellController implements Initializable {
generarGrafico();
}
/**
* Crear el array de tamaño 10.
*/
private void initializeScene() {
scene = contenidoShell.getScene();
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
for (int i = 0; i < 10; i++) {
Text text = (Text) scene.lookup("#texto_" + String.valueOf(i));
text.setText(array.getIndice(i));
}
}
}

View File

@ -31,15 +31,6 @@ public class TablaHash {
hashArray = new HashItem[tamano];
}
/**
* Devolver la cantidad de elementos que están en la tabla.
*
* @return int: La cantidad.
*/
public int size() {
return size;
}
/**
* Este metodo crea un hash muy único.
*
@ -47,7 +38,6 @@ public class TablaHash {
*
* @return int: El hash a devolver.
*/
@SuppressWarnings("unused")
public int hashMejor(String string) {
int intLength = string.length() / 4;
int sum = 0;
@ -70,6 +60,25 @@ public class TablaHash {
return (Math.abs(sum) % tamano);
}
/**
* Este metodo crea un hash usando una llave.
*
* @param string String: El string a hashear.
*
* @return int: El hash a devolver.
*/
@SuppressWarnings("unused")
public int hash(String string) {
int hash = 31;
for (int i = 0; i < string.length(); i++) {
hash = hash * 31 + string.charAt(i);
}
if (hash < 0) {
hash = hash * - 1;
}
return hash % tamano;
}
/**
* Insertar una llave y valor en la tabla hash.
*
@ -80,7 +89,7 @@ public class TablaHash {
*/
public boolean insertar(String llave, int valor) {
HashItem hashItem = new HashItem(llave, valor);
int hashIndice = hash(hashItem.getLlave());
int hashIndice = hashMejor(hashItem.getLlave());
int i = 0;
while (hashArray[hashIndice] != null && hashArray[hashIndice].getLlave() != null && i < tamano) {
if (hashArray[hashIndice].getLlave().equals(llave)) {
@ -101,24 +110,6 @@ public class TablaHash {
}
}
/**
* Este metodo crea un hash usando una llave.
*
* @param string String: El string a hashear.
*
* @return int: El hash a devolver.
*/
public int hash(String string) {
int hash = 31;
for (int i = 0; i < string.length(); i++) {
hash = hash * 31 + string.charAt(i);
}
if (hash < 0) {
hash = hash * - 1;
}
return hash % tamano;
}
/**
* Eliminar un elemento de la tabla hash.
*
@ -128,7 +119,7 @@ public class TablaHash {
*/
public boolean eliminar(String llave) {
HashItem hashItem = new HashItem(llave, 0);
int hashIndice = hash(hashItem.getLlave());
int hashIndice = hashMejor(hashItem.getLlave());
int i = 0;
while (hashArray[hashIndice] != null && hashArray[hashIndice].getLlave() != null && i < tamano) {
if (hashArray[hashIndice].getLlave().equals(llave)) {
@ -159,6 +150,15 @@ public class TablaHash {
return null;
}
/**
* Devolver la cantidad de elementos que están en la tabla.
*
* @return int: La cantidad.
*/
public int size() {
return size;
}
/**
* Devolver el valor que está guardado en cada indice. Se usa para construir la grafica.
*

View File

@ -9,6 +9,7 @@ import javafx.scene.text.Text;
import java.net.URL;
import java.util.Random;
import java.util.ResourceBundle;
import java.util.Scanner;
import java.util.logging.Level;
/**
@ -107,40 +108,6 @@ public class TablaHashController implements Initializable {
generarGrafico();
}
/**
* Crear el tablaHash de tamaño 10.
*/
private void initializeHashTable() {
scene = contenidoHashTable.getScene();
grafico = new Grafico(scene);
this.tablaHash = new TablaHash(10);
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
if (tablaHash.getIndice(i) != null) {
Text text = (Text) scene.lookup("#indice_texto_" + String.valueOf(i));
text.setText(String.valueOf(i));
text = (Text) scene.lookup("#llave_texto_" + String.valueOf(i));
text.setText(tablaHash.getIndice(i).getLlave());
text = (Text) scene.lookup("#valor_texto_" + String.valueOf(i));
text.setText(String.valueOf(tablaHash.getIndice(i).getValor()));
}
else {
Text text = (Text) scene.lookup("#indice_texto_" + String.valueOf(i));
text.setText("");
text = (Text) scene.lookup("#llave_texto_" + String.valueOf(i));
text.setText("");
text = (Text) scene.lookup("#valor_texto_" + String.valueOf(i));
text.setText("");
}
}
}
/**
* Vaciar el tablaHash de todos los valores.
*/
@ -164,9 +131,8 @@ public class TablaHashController implements Initializable {
}
// Mostrar el codigo
/*String tipo = (tablaHash.isOrdered()) ? "Ordenado" : "Simple";
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash" + tipo + "/insertar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);*/
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash/insertar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);
if (llaveHashTable.getText() != null && ! llaveHashTable.getText().trim().equals("") && valorHashTable.getText() != null && ! valorHashTable.getText().trim().equals("")) {
try {
@ -206,9 +172,8 @@ public class TablaHashController implements Initializable {
}
// Mostrar el codigo
/*String tipo = (tablaHash.isOrdered()) ? "Ordenado" : "Simple";
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash" + tipo + "/eliminar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);*/
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash/eliminar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);
try {
if (llaveHashTable.getText() != null && ! llaveHashTable.getText().trim().equals("")) {
@ -244,9 +209,8 @@ public class TablaHashController implements Initializable {
}
// Mostrar el codigo
/*String tipo = (tablaHash.isOrdered()) ? "Ordenado" : "Simple";
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash" + tipo + "/buscar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);*/
String codigoTexto = new Scanner(getClass().getResourceAsStream("/cl/cromer/estructuras/code/tablaHash/buscar")).useDelimiter("\\Z").next();
codigoHashTable.setText(codigoTexto);
try {
if (llaveHashTable.getText() != null && ! llaveHashTable.getText().trim().equals("")) {
@ -275,4 +239,38 @@ public class TablaHashController implements Initializable {
Main.mostrarError(resourceBundle.getString("tablaHashNoLlave"), resourceBundle);
}
}
/**
* Crear el tablaHash de tamaño 10.
*/
private void initializeHashTable() {
scene = contenidoHashTable.getScene();
grafico = new Grafico(scene);
this.tablaHash = new TablaHash(10);
}
/**
* Poner los valores en el grafico.
*/
private void generarGrafico() {
grafico.removerDestacar();
for (int i = 0; i < 10; i++) {
if (tablaHash.getIndice(i) != null) {
Text text = (Text) scene.lookup("#indice_texto_" + String.valueOf(i));
text.setText(String.valueOf(i));
text = (Text) scene.lookup("#llave_texto_" + String.valueOf(i));
text.setText(tablaHash.getIndice(i).getLlave());
text = (Text) scene.lookup("#valor_texto_" + String.valueOf(i));
text.setText(String.valueOf(tablaHash.getIndice(i).getValor()));
}
else {
Text text = (Text) scene.lookup("#indice_texto_" + String.valueOf(i));
text.setText("");
text = (Text) scene.lookup("#llave_texto_" + String.valueOf(i));
text.setText("");
text = (Text) scene.lookup("#valor_texto_" + String.valueOf(i));
text.setText("");
}
}
}
}

View File

@ -1,3 +1,28 @@
public HashItem buscar(String llave) {
for (int i = 0; i < tamano; i++) {
// Buscar la llave en los elementos del array.
if (hashArray[i] != null && hashArray[i].getLlave().equals(llave)) {
// Encontró la llave, devuelve el HashItem que la contiene.
return hashArray[i];
}
}
// No se encontró.
return null;
}
public int hash(String string) {
// Multiplicar por un numero primo(31) para generar mejor hashes.
int hash = 31;
for (int i = 0; i < string.length(); i++) {
// Suma usando cada char del string.
hash = hash * 31 + string.charAt(i);
}
if (hash < 0) {
hash = hash * - 1;
}
return hash % tamano;
}
public class HashItem {
final private String llave;
final private int valor;

View File

@ -1,3 +1,33 @@
public void eliminar(String llave) {
HashItem hashItem = new HashItem(llave, 0);
int hashIndice = hash(hashItem.getLlave());
int i = 0;
// Buscar hasta que encuentra la llave.
while (hashArray[hashIndice] != null && hashArray[hashIndice].getLlave() != null && i < tamano) {
if (hashArray[hashIndice].getLlave().equals(llave)) {
// Encontró la llave, borrarla.
hashArray[hashIndice] = null;
return;
}
hashIndice++;
hashIndice = hashIndice % tamano;
i++;
}
}
public int hash(String string) {
// Multiplicar por un numero primo(31) para generar mejor hashes.
int hash = 31;
for (int i = 0; i < string.length(); i++) {
// Suma usando cada char del string.
hash = hash * 31 + string.charAt(i);
}
if (hash < 0) {
hash = hash * - 1;
}
return hash % tamano;
}
public class HashItem {
final private String llave;
final private int valor;

View File

@ -21,6 +21,19 @@ public void insertar(String llave, int valor) {
}
}
public int hash(String string) {
// Multiplicar por un numero primo(31) para generar mejor hashes.
int hash = 31;
for (int i = 0; i < string.length(); i++) {
// Suma usando cada char del string.
hash = hash * 31 + string.charAt(i);
}
if (hash < 0) {
hash = hash * - 1;
}
return hash % tamano;
}
public class HashItem {
final private String llave;
final private int valor;

View File

@ -0,0 +1,8 @@
.text {
-fx-font-family: "Arial";
-fx-font-size: 14;
}
.scroll-pane {
-fx-background-color: transparent;
}

View File

@ -1,17 +0,0 @@
.text {
-fx-font-family: "Arial";
-fx-font-size: 14;
}
.menu-bar {
-fx-background-color: #aeb5ba, linear-gradient(to bottom, #ecf4fa 0%, #ced4d9 100%);
-fx-background-insets: 0, 0 0 1 0;
}
.menu-bar .menu .label {
-fx-text-fill: #2d3e4c;
}
.scroll-pane {
-fx-background-color: transparent;
}

View File

@ -18,6 +18,8 @@
<Button text="%insertar" onAction="#botonInsertar"/>
<Button text="%eliminar" onAction="#botonEliminar"/>
<Button text="%buscar" onAction="#botonBuscar"/>
</HBox>
<HBox alignment="CENTER" spacing="10">
<Text text="%llave"/>
<TextFieldLimited fx:id="llaveHashTable" maxLength="10" prefWidth="100"/>
<Text text="%valor"/>