diff --git a/doc/allclasses-frame.html b/doc/allclasses-frame.html
index ff085f2..9f0ff6b 100644
--- a/doc/allclasses-frame.html
+++ b/doc/allclasses-frame.html
@@ -2,10 +2,10 @@
-
+
All Classes
-
+
diff --git a/doc/allclasses-noframe.html b/doc/allclasses-noframe.html
index 1eca70d..1e6578b 100644
--- a/doc/allclasses-noframe.html
+++ b/doc/allclasses-noframe.html
@@ -2,10 +2,10 @@
-
+
All Classes
-
+
diff --git a/doc/cl/cromer/estructuras/Array.ParticionarResult.html b/doc/cl/cromer/estructuras/Array.ParticionarResult.html
index 4762662..43a745e 100644
--- a/doc/cl/cromer/estructuras/Array.ParticionarResult.html
+++ b/doc/cl/cromer/estructuras/Array.ParticionarResult.html
@@ -2,10 +2,10 @@
-
+
Array.ParticionarResult
-
+
diff --git a/doc/cl/cromer/estructuras/Array.html b/doc/cl/cromer/estructuras/Array.html
index 0ba8941..88493e1 100644
--- a/doc/cl/cromer/estructuras/Array.html
+++ b/doc/cl/cromer/estructuras/Array.html
@@ -2,10 +2,10 @@
-
+
Array
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -250,12 +250,18 @@ extends java.lang.Object
+void |
+llenar()
+Llenar el array con valores al azar.
+ |
+
+
boolean |
merge(boolean paso)
Ordenar el array usando merge.
|
-
+
private boolean |
merge(java.lang.String[] temp,
int prevIzquerda,
@@ -265,7 +271,13 @@ extends java.lang.Object
Este metodo hace los cambios al array.
|
-
+
+void |
+nuevo()
+Borrar el array.
+ |
+
+
private Array.ParticionarResult |
particionar(int izquerda,
int derecha,
@@ -273,13 +285,13 @@ extends java.lang.Object
Particionar el array desded la izquerda y derecho usando un pivot.
|
-
+
boolean |
quick(boolean paso)
Ordenar el array usando quick.
|
-
+
private boolean |
recurenciaMerge(java.lang.String[] temp,
int izquerda,
@@ -288,7 +300,7 @@ extends java.lang.Object
El metodo recursivo para ordenar con merge.
|
-
+
private boolean |
recurenciaQuick(int izquerda,
int derecha,
@@ -296,25 +308,25 @@ extends java.lang.Object
Metodo recursivo para ordenar using quick sort.
|
-
+
boolean |
seleccion(boolean paso)
Ordenar el array usando selección.
|
-
+
void |
setOrdered(boolean ordered)
Cambiar el tipo de array entre ordenado o simple.
|
-
+
boolean |
shell(boolean paso)
Ordenar el array usando shell.
|
-
+
int |
size()
Devolver la cantidad de elementos en el array.
@@ -402,20 +414,6 @@ extends java.lang.Object
Method Detail
-
-
-
-
@@ -444,22 +442,6 @@ extends java.lang.Object
-
-
-
-
@@ -476,6 +458,46 @@ extends java.lang.Object
+
+
+
+
+
+
+
+
+
+
+
+
@@ -492,22 +514,32 @@ extends java.lang.Object
-
+
-
-
getIndice
-public java.lang.String getIndice(int indice)
-Devolver el valor que está guardado en cada indice del array. Se usa para construir la grafica.
+insertar
+public boolean insertar(int valor)
+Insertar un valor al array.
- Parameters:
-indice - int: El indice que desea ver.
+valor - int: El valor a insertar.
- Returns:
-- String: El valor que está en dicho indice.
+- boolean: Verdad si fue exitoso, sino falso.
+
+
+
+
+-
+
nuevo
+public void nuevo()
+Borrar el array.
+
+
diff --git a/doc/cl/cromer/estructuras/ArrayController.html b/doc/cl/cromer/estructuras/ArrayController.html
index 3c34c1b..95332a9 100644
--- a/doc/cl/cromer/estructuras/ArrayController.html
+++ b/doc/cl/cromer/estructuras/ArrayController.html
@@ -2,10 +2,10 @@
-
+
ArrayController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -246,30 +246,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorNoEsta()
-Error cuando el valor no está en el array.
- |
-
-
-private void |
-errorNoValor()
-Se muestra un error si la persona no ingresa un valor en el TextField.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeArray()
Crear el array de tamaño 10.
@@ -420,6 +408,26 @@ implements javafx.fxml.Initializable
Llenar el array con numeros al azar.
+
+
+
+
+
+
+
+
@@ -453,7 +461,7 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/ArrayTipos.html b/doc/cl/cromer/estructuras/ArrayTipos.html
index 97d9c8a..008ff61 100644
--- a/doc/cl/cromer/estructuras/ArrayTipos.html
+++ b/doc/cl/cromer/estructuras/ArrayTipos.html
@@ -2,10 +2,10 @@
-
+
ArrayTipos
-
+
diff --git a/doc/cl/cromer/estructuras/BurbujaController.html b/doc/cl/cromer/estructuras/BurbujaController.html
index 7f970f4..b15a676 100644
--- a/doc/cl/cromer/estructuras/BurbujaController.html
+++ b/doc/cl/cromer/estructuras/BurbujaController.html
@@ -2,10 +2,10 @@
-
+
BurbujaController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/Cola.html b/doc/cl/cromer/estructuras/Cola.html
index c590016..80fff33 100644
--- a/doc/cl/cromer/estructuras/Cola.html
+++ b/doc/cl/cromer/estructuras/Cola.html
@@ -2,10 +2,10 @@
-
+
Cola
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -187,24 +187,30 @@ extends java.lang.Object
|
+void |
+llenar()
+Llenar la cola con valores al azar.
+ |
+
+
int |
peek()
Peek al valor que está al principio de la cola.
|
-
+
boolean |
pop()
Pop un valor del principio de la cola.
|
-
+
void |
push(int valor)
Push un valor en la cola encima.
|
-
+
int |
size()
Devolver la cantidad de elementos que están en la cola.
@@ -278,34 +284,6 @@ extends java.lang.Object
Method Detail
-
-
-
-
-
-
-
-
@@ -334,10 +312,24 @@ extends java.lang.Object
+
+
+
+
-
diff --git a/doc/cl/cromer/estructuras/ColaController.html b/doc/cl/cromer/estructuras/ColaController.html
index 3d71b87..464bba3 100644
--- a/doc/cl/cromer/estructuras/ColaController.html
+++ b/doc/cl/cromer/estructuras/ColaController.html
@@ -2,10 +2,10 @@
-
+
ColaController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -246,23 +246,11 @@ implements javafx.fxml.Initializable
|
private void |
-errorNoValor()
-Se muestra un error si la persona no ingresa un valor en el TextField.
- |
-
-
-private void |
-errorVacia()
-Error cuando la pila está vacía.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
@@ -414,6 +402,16 @@ implements javafx.fxml.Initializable
Llenar la cola con numeros al azar.
+
+
+
+
@@ -447,7 +445,7 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/Colores.html b/doc/cl/cromer/estructuras/Colores.html
index 078dab7..6f8e727 100644
--- a/doc/cl/cromer/estructuras/Colores.html
+++ b/doc/cl/cromer/estructuras/Colores.html
@@ -2,10 +2,10 @@
-
+
Colores
-
+
diff --git a/doc/cl/cromer/estructuras/Enlace.html b/doc/cl/cromer/estructuras/Enlace.html
index 4d0eb29..9dbfdd4 100644
--- a/doc/cl/cromer/estructuras/Enlace.html
+++ b/doc/cl/cromer/estructuras/Enlace.html
@@ -2,10 +2,10 @@
-
+
Enlace
-
+
diff --git a/doc/cl/cromer/estructuras/EnlaceCircular.html b/doc/cl/cromer/estructuras/EnlaceCircular.html
index 98407a0..245258b 100644
--- a/doc/cl/cromer/estructuras/EnlaceCircular.html
+++ b/doc/cl/cromer/estructuras/EnlaceCircular.html
@@ -2,10 +2,10 @@
-
+
EnlaceCircular
-
+
diff --git a/doc/cl/cromer/estructuras/EnlaceNormal.html b/doc/cl/cromer/estructuras/EnlaceNormal.html
index 78ccd55..96e6b26 100644
--- a/doc/cl/cromer/estructuras/EnlaceNormal.html
+++ b/doc/cl/cromer/estructuras/EnlaceNormal.html
@@ -2,10 +2,10 @@
-
+
EnlaceNormal
-
+
diff --git a/doc/cl/cromer/estructuras/Grafico.Destacados.html b/doc/cl/cromer/estructuras/Grafico.Destacados.html
new file mode 100644
index 0000000..163a69a
--- /dev/null
+++ b/doc/cl/cromer/estructuras/Grafico.Destacados.html
@@ -0,0 +1,449 @@
+
+
+
+
+
+
+Grafico.Destacados
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+- java.lang.Object
+-
+
+- cl.cromer.estructuras.Grafico.Destacados
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Summary
+
+Fields
+
+Modifier and Type |
+Field and Description |
+
+
+private javafx.scene.paint.Color |
+color
+El color anterior del elemento destacado.
+ |
+
+
+private java.lang.String |
+id
+El id del elemento destacado.
+ |
+
+
+private javafx.animation.SequentialTransition |
+sequentialTransition
+La animación del elemento destacado.
+ |
+
+
+private int |
+tipo
+El tipo de objeto que está destacado.
+ |
+
+
+
+
+
+
+-
+
+
+
Constructor Summary
+
+Constructors
+
+Constructor and Description |
+
+
+Destacados(int tipo,
+ java.lang.String id,
+ javafx.scene.paint.Color color,
+ javafx.animation.SequentialTransition sequentialTransition)
+Inicilizar.
+ |
+
+
+
+
+
+
+-
+
+
+
Method Summary
+
+All Methods Instance Methods Concrete Methods
+
+Modifier and Type |
+Method and Description |
+
+
+javafx.scene.paint.Color |
+getColor()
+Devolver el color anterior antes que fue destacado.
+ |
+
+
+java.lang.String |
+getId()
+Devolver el ID de elemento destacado.
+ |
+
+
+javafx.animation.SequentialTransition |
+getSequentialTransition()
+Devolver la animación que es en uso con el elemento.
+ |
+
+
+int |
+getTipo()
+Devolver el tipo de elemento destacado.
+ |
+
+
+
+-
+
+
+
Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+-
+
+
+
+
+-
+
+
+
Constructor Detail
+
+
+
+
+-
+
Destacados
+public Destacados(int tipo,
+ java.lang.String id,
+ javafx.scene.paint.Color color,
+ javafx.animation.SequentialTransition sequentialTransition)
+Inicilizar.
+
+- Parameters:
+tipo - int: El tipo de elemento destacado, , o .
+id - String: El id para identificar el elemento.
+color - Color: El color anterior para cambiarlo cuando Grafico.removerDestacar() es usado.
+sequentialTransition - SequentialTransition: La animación a usar.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/Grafico.html b/doc/cl/cromer/estructuras/Grafico.html
index ac171fb..14b312c 100644
--- a/doc/cl/cromer/estructuras/Grafico.html
+++ b/doc/cl/cromer/estructuras/Grafico.html
@@ -2,10 +2,10 @@
-
+
Grafico
-
+
@@ -399,7 +399,7 @@ extends java.lang.Object
@@ -547,6 +547,22 @@ extends java.lang.Object
+
+
+
+
@@ -601,22 +617,6 @@ extends java.lang.Object
-
-
-
-
diff --git a/doc/cl/cromer/estructuras/HashItem.html b/doc/cl/cromer/estructuras/HashItem.html
new file mode 100644
index 0000000..70e761e
--- /dev/null
+++ b/doc/cl/cromer/estructuras/HashItem.html
@@ -0,0 +1,419 @@
+
+
+
+
+
+
+HashItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+- java.lang.Object
+-
+
+- cl.cromer.estructuras.HashItem
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Summary
+
+Fields
+
+Modifier and Type |
+Field and Description |
+
+
+private int |
+indice
+Donde el elemento está en el array.
+ |
+
+
+private java.lang.String |
+llave
+La llave.
+ |
+
+
+private int |
+valor
+El valor.
+ |
+
+
+
+
+
+
+-
+
+
+
Constructor Summary
+
+Constructors
+
+Constructor and Description |
+
+
+HashItem(java.lang.String llave,
+ int valor)
+Inicilizar.
+ |
+
+
+
+
+
+
+-
+
+
+
Method Summary
+
+All Methods Instance Methods Concrete Methods
+
+Modifier and Type |
+Method and Description |
+
+
+int |
+getIndice()
+Devolver el indice del elemento.
+ |
+
+
+java.lang.String |
+getLlave()
+Devolver la llave del elemento.
+ |
+
+
+int |
+getValor()
+Devolver el valor del elemento.
+ |
+
+
+void |
+setIndice(int indice)
+Cambiar el indice.
+ |
+
+
+
+-
+
+
+
Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Detail
+
+
+
+
+
+
+
+
+-
+
valor
+private final int valor
+El valor.
+
+
+
+
+
+
+
+
+
+
+-
+
+
+
Constructor Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/HashTable.html b/doc/cl/cromer/estructuras/HashTable.html
new file mode 100644
index 0000000..2ccbfa5
--- /dev/null
+++ b/doc/cl/cromer/estructuras/HashTable.html
@@ -0,0 +1,495 @@
+
+
+
+
+
+
+HashTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+- java.lang.Object
+-
+
+- cl.cromer.estructuras.HashTable
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Summary
+
+Fields
+
+Modifier and Type |
+Field and Description |
+
+
+private HashItem[] |
+hashArray
+El array donde están todos los elementos de la tabla hash.
+ |
+
+
+private int |
+size
+Cantidad de elementos que están en la tabla hash.
+ |
+
+
+private int |
+tamano
+El tamaño maximo de la tabla hash.
+ |
+
+
+
+
+
+
+-
+
+
+
Constructor Summary
+
+Constructors
+
+Constructor and Description |
+
+
+HashTable(int tamano)
+Inicilizar.
+ |
+
+
+
+
+
+
+-
+
+
+
Method Summary
+
+All Methods Instance Methods Concrete Methods
+
+Modifier and Type |
+Method and Description |
+
+
+HashItem |
+buscar(java.lang.String llave)
+Buscar una llave en la tabla hash.
+ |
+
+
+boolean |
+eliminar(java.lang.String llave)
+Eliminar un elemento de la tabla hash.
+ |
+
+
+HashItem |
+getIndice(int indice)
+Devolver el valor que está guardado en cada indice.
+ |
+
+
+int |
+hash(java.lang.String string)
+Este metodo crea un hash usando una llave.
+ |
+
+
+int |
+hashMejor(java.lang.String string)
+Este metodo crea un hash muy único.
+ |
+
+
+boolean |
+insertar(java.lang.String llave,
+ int valor)
+Insertar una llave y valor en la tabla hash.
+ |
+
+
+int |
+size()
+Devolver la cantidad de elementos que están en la tabla.
+ |
+
+
+
+-
+
+
+
Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+-
+
+
+
+
+-
+
+
+
Constructor Detail
+
+
+
+
+
+
+
+
+-
+
+
+
Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+-
+
insertar
+public boolean insertar(java.lang.String llave,
+ int valor)
+Insertar una llave y valor en la tabla hash.
+
+- Parameters:
+llave - String: La llave para identificar un elemento.
+valor - int: El valor a insertar.
+- Returns:
+- boolean: Verdad si fue insertado, sino está llena la tabla hash.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/HashTableController.html b/doc/cl/cromer/estructuras/HashTableController.html
new file mode 100644
index 0000000..978453e
--- /dev/null
+++ b/doc/cl/cromer/estructuras/HashTableController.html
@@ -0,0 +1,557 @@
+
+
+
+
+
+
+HashTableController
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+- java.lang.Object
+-
+
+- cl.cromer.estructuras.HashTableController
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Summary
+
+
+
+
+
+-
+
+
+
Constructor Summary
+
+
+
+
+
+-
+
+
+
Method Summary
+
+All Methods Instance Methods Concrete Methods
+
+Modifier and Type |
+Method and Description |
+
+
+protected void |
+botonBuscar()
+Buscar si existe un elemento en el hashTable y mostrar el codigo en la pantalla
+ Si existe el valor destacarlo.
+ |
+
+
+protected void |
+botonEliminar()
+Eliminar un valor del hashTable si existe y mostrar el codigo en la pantalla.
+ |
+
+
+protected void |
+botonInsertar()
+Insertar un valor al hashTable y mostrar el codigo en la pantalla.
+ |
+
+
+protected void |
+botonLlenar()
+Llenar el hashTable con numeros al azar.
+ |
+
+
+protected void |
+botonVaciar()
+Vaciar el hashTable de todos los valores.
+ |
+
+
+private void |
+generarGrafico()
+Poner los valores en el grafico.
+ |
+
+
+void |
+initialize(java.net.URL location,
+ java.util.ResourceBundle resourceBundle)
+Inicializar todos los datos y dibujar las graficas.
+ |
+
+
+private void |
+initializeHashTable()
+Crear el hashTable de tamaño 10.
+ |
+
+
+
+-
+
+
+
Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+-
+
+
+
+
+-
+
+
+
Constructor Detail
+
+
+
+
+
+
+
+
+-
+
+
+
Method Detail
+
+
+
+
+-
+
initialize
+public void initialize(java.net.URL location,
+ java.util.ResourceBundle resourceBundle)
+Inicializar todos los datos y dibujar las graficas.
+
+- Specified by:
+initialize in interface javafx.fxml.Initializable
+- Parameters:
+location - URL: El URL de fxml en uso.
+resourceBundle - ResourceBundle: Tiene datos de idioma.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/InsercionController.html b/doc/cl/cromer/estructuras/InsercionController.html
index 4e4571f..e881c01 100644
--- a/doc/cl/cromer/estructuras/InsercionController.html
+++ b/doc/cl/cromer/estructuras/InsercionController.html
@@ -2,10 +2,10 @@
-
+
InsercionController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/ListaEnlazada.html b/doc/cl/cromer/estructuras/ListaEnlazada.html
index 37582a3..e693328 100644
--- a/doc/cl/cromer/estructuras/ListaEnlazada.html
+++ b/doc/cl/cromer/estructuras/ListaEnlazada.html
@@ -2,10 +2,10 @@
-
+
ListaEnlazada
-
+
@@ -306,20 +306,6 @@ extends java.lang.Object
Method Detail
-
-
-
-
@@ -348,22 +334,6 @@ extends java.lang.Object
-
-
-
-
@@ -380,6 +350,22 @@ extends java.lang.Object
+
+
+
+
@@ -399,7 +385,7 @@ extends java.lang.Object
-
diff --git a/doc/cl/cromer/estructuras/ListaEnlazadaCircular.html b/doc/cl/cromer/estructuras/ListaEnlazadaCircular.html
index fc2cb9a..b909b13 100644
--- a/doc/cl/cromer/estructuras/ListaEnlazadaCircular.html
+++ b/doc/cl/cromer/estructuras/ListaEnlazadaCircular.html
@@ -2,10 +2,10 @@
-
+
ListaEnlazadaCircular
-
+
@@ -322,20 +322,6 @@ extends java.lang.Object
Method Detail
-
-
-
-
@@ -364,6 +350,22 @@ extends java.lang.Object
+
+
+
+
@@ -380,19 +382,17 @@ extends java.lang.Object
-
+
-
-
insertar
-public boolean insertar(int llave)
-Insertar una llave en la lista.
+size
+public int size()
+Devolver la cantidad de enlaces que están en la lista.
-- Parameters:
-llave - int: La llave a insertar.
- Returns:
-- boolean: Verdad si fue insertado, falso si ya existe la llave.
+- int: La cantidad.
diff --git a/doc/cl/cromer/estructuras/ListaEnlazadaTipos.html b/doc/cl/cromer/estructuras/ListaEnlazadaTipos.html
index 2a5e5c0..58bc9ca 100644
--- a/doc/cl/cromer/estructuras/ListaEnlazadaTipos.html
+++ b/doc/cl/cromer/estructuras/ListaEnlazadaTipos.html
@@ -2,10 +2,10 @@
-
+
ListaEnlazadaTipos
-
+
diff --git a/doc/cl/cromer/estructuras/ListaEnlazdaController.html b/doc/cl/cromer/estructuras/ListaEnlazdaController.html
index e636240..94d7bbf 100644
--- a/doc/cl/cromer/estructuras/ListaEnlazdaController.html
+++ b/doc/cl/cromer/estructuras/ListaEnlazdaController.html
@@ -2,10 +2,10 @@
-
+
ListaEnlazdaController
-
+
@@ -284,35 +284,33 @@ implements javafx.fxml.Initializable
|
private void |
-errorNoEsta()
-Error cuando la llave no está en la lista.
- |
-
-
-private void |
-errorNoValor()
-Se muestra un error si la persona no ingresa un valor y una llave en los TextField.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
+private java.lang.String |
+getTipoString() |
+
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeLista()
Crear una lista vacia.
|
+
+private void |
+nuevaLista()
+Crear una nueva lista enlazada.
+ |
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -579,6 +516,16 @@ implements javafx.fxml.Initializable
Poner los valores en el grafico.
+
+
+
+
@@ -598,7 +545,7 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/Logs.html b/doc/cl/cromer/estructuras/Logs.html
index 8a23cda..f7f8688 100644
--- a/doc/cl/cromer/estructuras/Logs.html
+++ b/doc/cl/cromer/estructuras/Logs.html
@@ -2,10 +2,10 @@
-
+
Logs
-
+
diff --git a/doc/cl/cromer/estructuras/Main.html b/doc/cl/cromer/estructuras/Main.html
index 8aa389a..2c8932a 100644
--- a/doc/cl/cromer/estructuras/Main.html
+++ b/doc/cl/cromer/estructuras/Main.html
@@ -2,10 +2,10 @@
-
+
Main
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":9,"i1":9,"i2":10};
+var methods = {"i0":9,"i1":9,"i2":9,"i3":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -212,10 +212,19 @@ extends javafx.application.Application
static void |
-setIcon(javafx.scene.control.Dialog dialog,
- java.lang.Class classe) |
+mostrarError(java.lang.String mensaje,
+ java.util.ResourceBundle resourceBundle)
+Mostrar una ventana con mensaje en la pantalla.
+ |
+static void |
+setIcon(javafx.scene.control.Dialog dialog,
+ java.lang.Class clase)
+Cambiar el icono de una ventana.
+ |
+
+
void |
start(javafx.stage.Stage stage)
Crear el stage y la scene para la aplicación grafica.
@@ -303,6 +312,22 @@ extends javafx.application.Application
+
+
+
+
+-
+
mostrarError
+public static void mostrarError(java.lang.String mensaje,
+ java.util.ResourceBundle resourceBundle)
+Mostrar una ventana con mensaje en la pantalla.
+
+- Parameters:
+mensaje - String: El mensaje a mostrar.
+resourceBundle - ResourceBundle: Contiene el idioma actual.
+
+
+
@@ -310,7 +335,13 @@ extends javafx.application.Application
setIcon
public static void setIcon(javafx.scene.control.Dialog dialog,
- java.lang.Class classe)
+ java.lang.Class clase)
+Cambiar el icono de una ventana.
+
+- Parameters:
+dialog - Dialog: El Dialog a cambiar.
+clase - Class: La clase usado para abrir el Stream.
+
@@ -325,7 +356,7 @@ extends javafx.application.Application
Specified by:
start in class javafx.application.Application
Parameters:
-stage - El primer stage donde va todas las cosas visuales.
+stage - Stage: El primer stage donde va todas las cosas visuales.
diff --git a/doc/cl/cromer/estructuras/MenuController.html b/doc/cl/cromer/estructuras/MenuController.html
index 2b20fe9..1b00936 100644
--- a/doc/cl/cromer/estructuras/MenuController.html
+++ b/doc/cl/cromer/estructuras/MenuController.html
@@ -2,10 +2,10 @@
-
+
MenuController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -388,6 +388,12 @@ implements javafx.fxml.Initializable
Click en Shell.
|
+
+private void |
+openFXML(java.lang.String fxml,
+ javafx.scene.Scene scene,
+ javafx.stage.Stage stage) |
+
+
+
+
+
+-
+
loadStage
+private void loadStage(java.lang.String title,
+ java.lang.String fxml,
+ java.lang.String css,
+ java.lang.Object object)
+Cargar el fxml, css y titulo.
+
+- Parameters:
+title
- String: El titulo de la escena.
+fxml
- String: El archivo de fxml.
+css
- String: El archivo de css.
+object
- Object: El objeto a pasar a la nueva escena.
+
+
+
+
+
+
+
@@ -538,6 +575,24 @@ implements javafx.fxml.Initializable
Click en Burbuja.
+
+
+
+
+-
+
loadStage
+private void loadStage(java.lang.String title,
+ java.lang.String fxml,
+ java.lang.String css)
+Cargar el fxml, css y titulo.
+
+- Parameters:
+title
- String: El titulo de la escena.
+fxml
- String: El archivo de fxml.
+css
- String: El archivo de css.
+
+
+
@@ -658,44 +713,6 @@ implements javafx.fxml.Initializable
Click en Ingles.
-
-
-
-
-
-
-
-
-
-
-
-
--
-
loadStage
-private void loadStage(java.lang.String title,
- java.lang.String fxml,
- java.lang.String css)
-Cargar el fxml, css y titulo.
-
-- Parameters:
-title
- String: El titulo de la escena.
-fxml
- String: El archivo de fxml.
-css
- String: El archivo de css.
-
-
-
@@ -714,24 +731,24 @@ implements javafx.fxml.Initializable
-
+
+
+
+
+
-
-
loadStage
-private void loadStage(java.lang.String title,
- java.lang.String fxml,
- java.lang.String css,
- java.lang.Object object)
-Cargar el fxml, css y titulo.
-
-- Parameters:
-title
- String: El titulo de la escena.
-fxml
- String: El archivo de fxml.
-css
- String: El archivo de css.
-object
- Object: El objeto a pasar a la nueva escena.
-
+menuAcerca
+protected void menuAcerca()
+Click en Acerca.
diff --git a/doc/cl/cromer/estructuras/MergeController.html b/doc/cl/cromer/estructuras/MergeController.html
index 35c2d23..45acd98 100644
--- a/doc/cl/cromer/estructuras/MergeController.html
+++ b/doc/cl/cromer/estructuras/MergeController.html
@@ -2,10 +2,10 @@
-
+
MergeController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/Palabras.html b/doc/cl/cromer/estructuras/Palabras.html
new file mode 100644
index 0000000..6ee84fe
--- /dev/null
+++ b/doc/cl/cromer/estructuras/Palabras.html
@@ -0,0 +1,306 @@
+
+
+
+
+
+
+Palabras
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+- java.lang.Object
+-
+
+- cl.cromer.estructuras.Palabras
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Summary
+
+Fields
+
+Modifier and Type |
+Field and Description |
+
+
+private java.util.List<java.lang.String> |
+palabras |
+
+
+
+
+
+
+-
+
+
+
Constructor Summary
+
+Constructors
+
+Constructor and Description |
+
+
+Palabras() |
+
+
+
+
+
+
+-
+
+
+
Method Summary
+
+
+-
+
+
+
Methods inherited from class java.lang.Object
+clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+
+
+
+
+
+
+
+
+-
+
+
+-
+
+
+
Field Detail
+
+
+
+
+
+
+
+
+-
+
+
+
Constructor Detail
+
+
+
+
+-
+
Palabras
+public Palabras()
+
+
+
+
+
+
+-
+
+
+
Method Detail
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/Pila.html b/doc/cl/cromer/estructuras/Pila.html
index 27677b2..7fd95dd 100644
--- a/doc/cl/cromer/estructuras/Pila.html
+++ b/doc/cl/cromer/estructuras/Pila.html
@@ -2,10 +2,10 @@
-
+
Pila
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -187,24 +187,30 @@ extends java.lang.Object
|
+void |
+llenar()
+Llenar la pila con valores al azar.
+ |
+
+
int |
peek()
Peek al valor que está encima de la pila.
|
-
+
boolean |
pop()
Pop un valor de encima de la pila.
|
-
+
void |
push(int valor)
Push un valor en la pila encima.
|
-
+
int |
size()
Devolver la cantidad de elementos en la pila.
@@ -278,34 +284,6 @@ extends java.lang.Object
Method Detail
-
-
-
-
-
-
-
-
@@ -320,6 +298,20 @@ extends java.lang.Object
+
+
+
+
@@ -337,7 +329,7 @@ extends java.lang.Object
-
diff --git a/doc/cl/cromer/estructuras/PilaController.html b/doc/cl/cromer/estructuras/PilaController.html
index fc11a6d..5eaab61 100644
--- a/doc/cl/cromer/estructuras/PilaController.html
+++ b/doc/cl/cromer/estructuras/PilaController.html
@@ -2,10 +2,10 @@
-
+
PilaController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -246,23 +246,11 @@ implements javafx.fxml.Initializable
|
private void |
-errorNoValor()
-Se muestra un error si la persona no ingresa un valor en el TextField.
- |
-
-
-private void |
-errorVacia()
-Error cuando la pila está vacía.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
@@ -414,6 +402,16 @@ implements javafx.fxml.Initializable
Llenar la pila con numeros al azar.
+
+
+
+
@@ -447,7 +445,7 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/QuickController.html b/doc/cl/cromer/estructuras/QuickController.html
index 73386fa..18896dc 100644
--- a/doc/cl/cromer/estructuras/QuickController.html
+++ b/doc/cl/cromer/estructuras/QuickController.html
@@ -2,10 +2,10 @@
-
+
QuickController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/SeleccionController.html b/doc/cl/cromer/estructuras/SeleccionController.html
index 62187ed..a49f4fa 100644
--- a/doc/cl/cromer/estructuras/SeleccionController.html
+++ b/doc/cl/cromer/estructuras/SeleccionController.html
@@ -2,10 +2,10 @@
-
+
SeleccionController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/ShellController.html b/doc/cl/cromer/estructuras/ShellController.html
index 15cbf08..7aa0448 100644
--- a/doc/cl/cromer/estructuras/ShellController.html
+++ b/doc/cl/cromer/estructuras/ShellController.html
@@ -2,10 +2,10 @@
-
+
ShellController
-
+
@@ -19,7 +19,7 @@
catch(err) {
}
//-->
-var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
+var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@@ -221,24 +221,18 @@ implements javafx.fxml.Initializable
|
private void |
-errorYaOrdenado()
-Se muestra un error si el array ya está ordenado.
- |
-
-
-private void |
generarGrafico()
Poner los valores en el grafico.
|
-
+
void |
initialize(java.net.URL location,
java.util.ResourceBundle resourceBundle)
Inicializar todos los datos y dibujar las graficas.
|
-
+
private void |
initializeScene()
Crear el array de tamaño 10.
@@ -369,36 +363,6 @@ implements javafx.fxml.Initializable
Crear un array nuevo.
-
-
-
-
-
-
-
-
-
-
-
-
@@ -412,13 +376,33 @@ implements javafx.fxml.Initializable
-
diff --git a/doc/cl/cromer/estructuras/TextFieldLimited.StyleableProperties.html b/doc/cl/cromer/estructuras/TextFieldLimited.StyleableProperties.html
index 820cf82..d571963 100644
--- a/doc/cl/cromer/estructuras/TextFieldLimited.StyleableProperties.html
+++ b/doc/cl/cromer/estructuras/TextFieldLimited.StyleableProperties.html
@@ -2,10 +2,10 @@
-
+
TextFieldLimited.StyleableProperties
-
+
diff --git a/doc/cl/cromer/estructuras/TextFieldLimited.html b/doc/cl/cromer/estructuras/TextFieldLimited.html
index 55a522a..e9224af 100644
--- a/doc/cl/cromer/estructuras/TextFieldLimited.html
+++ b/doc/cl/cromer/estructuras/TextFieldLimited.html
@@ -2,10 +2,10 @@
-
+
TextFieldLimited
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html b/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html
index cc55d20..fa922ac 100644
--- a/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html
+++ b/doc/cl/cromer/estructuras/class-use/Array.ParticionarResult.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Array.ParticionarResult
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Array.html b/doc/cl/cromer/estructuras/class-use/Array.html
index 4632d01..201cdb4 100644
--- a/doc/cl/cromer/estructuras/class-use/Array.html
+++ b/doc/cl/cromer/estructuras/class-use/Array.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Array
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ArrayController.html b/doc/cl/cromer/estructuras/class-use/ArrayController.html
index 0e3ab04..3aa466c 100644
--- a/doc/cl/cromer/estructuras/class-use/ArrayController.html
+++ b/doc/cl/cromer/estructuras/class-use/ArrayController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ArrayController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ArrayTipos.html b/doc/cl/cromer/estructuras/class-use/ArrayTipos.html
index 5a2e738..84b8428 100644
--- a/doc/cl/cromer/estructuras/class-use/ArrayTipos.html
+++ b/doc/cl/cromer/estructuras/class-use/ArrayTipos.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ArrayTipos
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/BurbujaController.html b/doc/cl/cromer/estructuras/class-use/BurbujaController.html
index 3343e86..139c5a9 100644
--- a/doc/cl/cromer/estructuras/class-use/BurbujaController.html
+++ b/doc/cl/cromer/estructuras/class-use/BurbujaController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.BurbujaController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Cola.html b/doc/cl/cromer/estructuras/class-use/Cola.html
index f2160a3..626d905 100644
--- a/doc/cl/cromer/estructuras/class-use/Cola.html
+++ b/doc/cl/cromer/estructuras/class-use/Cola.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Cola
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ColaController.html b/doc/cl/cromer/estructuras/class-use/ColaController.html
index c645113..dc39c1b 100644
--- a/doc/cl/cromer/estructuras/class-use/ColaController.html
+++ b/doc/cl/cromer/estructuras/class-use/ColaController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ColaController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Colores.html b/doc/cl/cromer/estructuras/class-use/Colores.html
index b2af695..2e5ecc1 100644
--- a/doc/cl/cromer/estructuras/class-use/Colores.html
+++ b/doc/cl/cromer/estructuras/class-use/Colores.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Colores
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Enlace.html b/doc/cl/cromer/estructuras/class-use/Enlace.html
index 0b03f5c..abc8ce5 100644
--- a/doc/cl/cromer/estructuras/class-use/Enlace.html
+++ b/doc/cl/cromer/estructuras/class-use/Enlace.html
@@ -2,10 +2,10 @@
-
+
Uses of Interface cl.cromer.estructuras.Enlace
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/EnlaceCircular.html b/doc/cl/cromer/estructuras/class-use/EnlaceCircular.html
index 47a6b7a..3dc4d96 100644
--- a/doc/cl/cromer/estructuras/class-use/EnlaceCircular.html
+++ b/doc/cl/cromer/estructuras/class-use/EnlaceCircular.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.EnlaceCircular
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/EnlaceNormal.html b/doc/cl/cromer/estructuras/class-use/EnlaceNormal.html
index 2880c33..2ae81b3 100644
--- a/doc/cl/cromer/estructuras/class-use/EnlaceNormal.html
+++ b/doc/cl/cromer/estructuras/class-use/EnlaceNormal.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.EnlaceNormal
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Grafico.Destacados.html b/doc/cl/cromer/estructuras/class-use/Grafico.Destacados.html
new file mode 100644
index 0000000..6a67995
--- /dev/null
+++ b/doc/cl/cromer/estructuras/class-use/Grafico.Destacados.html
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+Uses of Class cl.cromer.estructuras.Grafico.Destacados
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/class-use/Grafico.html b/doc/cl/cromer/estructuras/class-use/Grafico.html
index afb6bb7..5adecf2 100644
--- a/doc/cl/cromer/estructuras/class-use/Grafico.html
+++ b/doc/cl/cromer/estructuras/class-use/Grafico.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Grafico
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/HashItem.html b/doc/cl/cromer/estructuras/class-use/HashItem.html
new file mode 100644
index 0000000..8fe7fb8
--- /dev/null
+++ b/doc/cl/cromer/estructuras/class-use/HashItem.html
@@ -0,0 +1,171 @@
+
+
+
+
+
+
+Uses of Class cl.cromer.estructuras.HashItem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+-
+
+-
+
+
+
+
+
+Methods in cl.cromer.estructuras that return HashItem
+
+Modifier and Type |
+Method and Description |
+
+
+
+HashItem |
+HashTable.buscar(java.lang.String llave)
+Buscar una llave en la tabla hash.
+ |
+
+
+HashItem |
+HashTable.getIndice(int indice)
+Devolver el valor que está guardado en cada indice.
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/class-use/HashTable.html b/doc/cl/cromer/estructuras/class-use/HashTable.html
new file mode 100644
index 0000000..fc92000
--- /dev/null
+++ b/doc/cl/cromer/estructuras/class-use/HashTable.html
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+Uses of Class cl.cromer.estructuras.HashTable
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/class-use/HashTableController.html b/doc/cl/cromer/estructuras/class-use/HashTableController.html
new file mode 100644
index 0000000..a15cad1
--- /dev/null
+++ b/doc/cl/cromer/estructuras/class-use/HashTableController.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+Uses of Class cl.cromer.estructuras.HashTableController
+
+
+
+
+
+
+
+
+
+
+
+
+No usage of cl.cromer.estructuras.HashTableController
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/class-use/InsercionController.html b/doc/cl/cromer/estructuras/class-use/InsercionController.html
index 5e635f4..0d74624 100644
--- a/doc/cl/cromer/estructuras/class-use/InsercionController.html
+++ b/doc/cl/cromer/estructuras/class-use/InsercionController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.InsercionController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ListaEnlazada.html b/doc/cl/cromer/estructuras/class-use/ListaEnlazada.html
index 299b83f..e133264 100644
--- a/doc/cl/cromer/estructuras/class-use/ListaEnlazada.html
+++ b/doc/cl/cromer/estructuras/class-use/ListaEnlazada.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ListaEnlazada
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ListaEnlazadaCircular.html b/doc/cl/cromer/estructuras/class-use/ListaEnlazadaCircular.html
index 40fce00..daa2aa4 100644
--- a/doc/cl/cromer/estructuras/class-use/ListaEnlazadaCircular.html
+++ b/doc/cl/cromer/estructuras/class-use/ListaEnlazadaCircular.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ListaEnlazadaCircular
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ListaEnlazadaTipos.html b/doc/cl/cromer/estructuras/class-use/ListaEnlazadaTipos.html
index 3354ea4..e7a5f4f 100644
--- a/doc/cl/cromer/estructuras/class-use/ListaEnlazadaTipos.html
+++ b/doc/cl/cromer/estructuras/class-use/ListaEnlazadaTipos.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ListaEnlazadaTipos
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ListaEnlazdaController.html b/doc/cl/cromer/estructuras/class-use/ListaEnlazdaController.html
index aa398ca..c94ab77 100644
--- a/doc/cl/cromer/estructuras/class-use/ListaEnlazdaController.html
+++ b/doc/cl/cromer/estructuras/class-use/ListaEnlazdaController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ListaEnlazdaController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Logs.html b/doc/cl/cromer/estructuras/class-use/Logs.html
index 1dea7a3..9497269 100644
--- a/doc/cl/cromer/estructuras/class-use/Logs.html
+++ b/doc/cl/cromer/estructuras/class-use/Logs.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Logs
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Main.html b/doc/cl/cromer/estructuras/class-use/Main.html
index 4c58f56..8d91f46 100644
--- a/doc/cl/cromer/estructuras/class-use/Main.html
+++ b/doc/cl/cromer/estructuras/class-use/Main.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Main
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/MenuController.html b/doc/cl/cromer/estructuras/class-use/MenuController.html
index 71710ed..be37477 100644
--- a/doc/cl/cromer/estructuras/class-use/MenuController.html
+++ b/doc/cl/cromer/estructuras/class-use/MenuController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.MenuController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/MergeController.html b/doc/cl/cromer/estructuras/class-use/MergeController.html
index 6597812..c5c2bd8 100644
--- a/doc/cl/cromer/estructuras/class-use/MergeController.html
+++ b/doc/cl/cromer/estructuras/class-use/MergeController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.MergeController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/Palabras.html b/doc/cl/cromer/estructuras/class-use/Palabras.html
new file mode 100644
index 0000000..2e5144d
--- /dev/null
+++ b/doc/cl/cromer/estructuras/class-use/Palabras.html
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+Uses of Class cl.cromer.estructuras.Palabras
+
+
+
+
+
+
+
+
+
+
+
+
+No usage of cl.cromer.estructuras.Palabras
+
+
+
+
+
+
diff --git a/doc/cl/cromer/estructuras/class-use/Pila.html b/doc/cl/cromer/estructuras/class-use/Pila.html
index db39e1b..80e772f 100644
--- a/doc/cl/cromer/estructuras/class-use/Pila.html
+++ b/doc/cl/cromer/estructuras/class-use/Pila.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.Pila
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/PilaController.html b/doc/cl/cromer/estructuras/class-use/PilaController.html
index fa22d62..cbac54c 100644
--- a/doc/cl/cromer/estructuras/class-use/PilaController.html
+++ b/doc/cl/cromer/estructuras/class-use/PilaController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.PilaController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/QuickController.html b/doc/cl/cromer/estructuras/class-use/QuickController.html
index 4db27de..269e219 100644
--- a/doc/cl/cromer/estructuras/class-use/QuickController.html
+++ b/doc/cl/cromer/estructuras/class-use/QuickController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.QuickController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/SeleccionController.html b/doc/cl/cromer/estructuras/class-use/SeleccionController.html
index 2a9a10c..94c28cc 100644
--- a/doc/cl/cromer/estructuras/class-use/SeleccionController.html
+++ b/doc/cl/cromer/estructuras/class-use/SeleccionController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.SeleccionController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/ShellController.html b/doc/cl/cromer/estructuras/class-use/ShellController.html
index f36e951..b8688dd 100644
--- a/doc/cl/cromer/estructuras/class-use/ShellController.html
+++ b/doc/cl/cromer/estructuras/class-use/ShellController.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.ShellController
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/TextFieldLimited.StyleableProperties.html b/doc/cl/cromer/estructuras/class-use/TextFieldLimited.StyleableProperties.html
index 52bbc75..76e4e6e 100644
--- a/doc/cl/cromer/estructuras/class-use/TextFieldLimited.StyleableProperties.html
+++ b/doc/cl/cromer/estructuras/class-use/TextFieldLimited.StyleableProperties.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.TextFieldLimited.StyleableProperties
-
+
diff --git a/doc/cl/cromer/estructuras/class-use/TextFieldLimited.html b/doc/cl/cromer/estructuras/class-use/TextFieldLimited.html
index d968a69..4ca1f1b 100644
--- a/doc/cl/cromer/estructuras/class-use/TextFieldLimited.html
+++ b/doc/cl/cromer/estructuras/class-use/TextFieldLimited.html
@@ -2,10 +2,10 @@
-
+
Uses of Class cl.cromer.estructuras.TextFieldLimited
-
+
diff --git a/doc/cl/cromer/estructuras/package-frame.html b/doc/cl/cromer/estructuras/package-frame.html
index 76f725a..9d7452b 100644
--- a/doc/cl/cromer/estructuras/package-frame.html
+++ b/doc/cl/cromer/estructuras/package-frame.html
@@ -2,10 +2,10 @@
-
+
cl.cromer.estructuras
-
+
diff --git a/doc/cl/cromer/estructuras/package-summary.html b/doc/cl/cromer/estructuras/package-summary.html
index 92f27a2..04962f3 100644
--- a/doc/cl/cromer/estructuras/package-summary.html
+++ b/doc/cl/cromer/estructuras/package-summary.html
@@ -2,10 +2,10 @@
-
+
cl.cromer.estructuras
-
+
@@ -167,16 +167,20 @@
|
HashItem |
- |
+
+ La estructura de un elemento de una Tabla Hash.
+ |
HashTable |
- |
+
+ Esta clase es tipo de estructura de dato Tabla Hash.
+ |
HashTableController |
- Esta clase es para controlar todos la interfaz de Array.
+Esta clase es para controlar todos la interfaz de HashTable.
|
diff --git a/doc/cl/cromer/estructuras/package-tree.html b/doc/cl/cromer/estructuras/package-tree.html
index 7cdaf2f..6322490 100644
--- a/doc/cl/cromer/estructuras/package-tree.html
+++ b/doc/cl/cromer/estructuras/package-tree.html
@@ -2,10 +2,10 @@
-
+
cl.cromer.estructuras Class Hierarchy
-
+
diff --git a/doc/cl/cromer/estructuras/package-use.html b/doc/cl/cromer/estructuras/package-use.html
index e336bd7..c3b7bdb 100644
--- a/doc/cl/cromer/estructuras/package-use.html
+++ b/doc/cl/cromer/estructuras/package-use.html
@@ -2,10 +2,10 @@
-
+
Uses of Package cl.cromer.estructuras
-
+
@@ -129,10 +129,14 @@
-HashItem |
+HashItem
+ La estructura de un elemento de una Tabla Hash.
+ |
-HashTable |
+HashTable
+ Esta clase es tipo de estructura de dato Tabla Hash.
+ |
ListaEnlazada
diff --git a/doc/constant-values.html b/doc/constant-values.html
index 2618ee3..f5ab08b 100644
--- a/doc/constant-values.html
+++ b/doc/constant-values.html
@@ -2,10 +2,10 @@
-
+
Constant Field Values
-
+
diff --git a/doc/deprecated-list.html b/doc/deprecated-list.html
index 4859fc3..bd83f9f 100644
--- a/doc/deprecated-list.html
+++ b/doc/deprecated-list.html
@@ -2,10 +2,10 @@
-
+
Deprecated List
-
+
diff --git a/doc/help-doc.html b/doc/help-doc.html
index 13c828f..837ba9c 100644
--- a/doc/help-doc.html
+++ b/doc/help-doc.html
@@ -2,10 +2,10 @@
-
+
API Help
-
+
diff --git a/doc/index-files/index-1.html b/doc/index-files/index-1.html
index ec808ed..1bfcdfe 100644
--- a/doc/index-files/index-1.html
+++ b/doc/index-files/index-1.html
@@ -2,10 +2,10 @@
-
+
A-Index
-
+
@@ -69,7 +69,7 @@
-
-A B C D E F G H I L M O P Q R S T U V
+A B C D E F G H I L M N O P Q R S T U V
L
@@ -129,11 +129,29 @@
La llave.
llave - Variable in class cl.cromer.estructuras.HashItem
-
+
+La llave.
+
llaveHashTable - Variable in class cl.cromer.estructuras.HashTableController
La caja para ingresar la llave.
+ llenar() - Method in class cl.cromer.estructuras.Array
+
+Llenar el array con valores al azar.
+
+ llenar() - Method in class cl.cromer.estructuras.Cola
+
+Llenar la cola con valores al azar.
+
+ llenar() - Method in class cl.cromer.estructuras.Pila
+
+Llenar la pila con valores al azar.
+
+ loadStage(String, String, String, Object) - Method in class cl.cromer.estructuras.MenuController
+
+Cargar el fxml, css y titulo.
+
loadStage(String, String, String) - Method in class cl.cromer.estructuras.MenuController
Cargar el fxml, css y titulo.
@@ -142,10 +160,6 @@
Cargar el fxml y css.
-loadStage(String, String, String, Object) - Method in class cl.cromer.estructuras.MenuController
-
-Cargar el fxml, css y titulo.
-
log(Level, String) - Static method in class cl.cromer.estructuras.Logs
Agregar un log al logger.
@@ -167,7 +181,7 @@
Crear un logger usando "EDD".
- A B C D E F G H I L M O P Q R S T U V
+A B C D E F G H I L M N O P Q R S T U V
-
diff --git a/doc/index-files/index-12.html b/doc/index-files/index-12.html
index 66b4063..c2ed8b2 100644
--- a/doc/index-files/index-12.html
+++ b/doc/index-files/index-12.html
@@ -2,10 +2,10 @@
-
+
-O-Index
-
+N-Index
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
+
+
+
+
+
+
+
+
+A B C D E F G H I L M N O P Q R S T U V
+
+
+ U
+
+- ultimo - Variable in class cl.cromer.estructuras.ListaEnlazadaCircular
+-
+
El ultimo enlace.
+
+
+ A B C D E F G H I L M N O P Q R S T U V
+
+
+
+
+
+
diff --git a/doc/index-files/index-2.html b/doc/index-files/index-2.html
index 6c6c15c..23f8647 100644
--- a/doc/index-files/index-2.html
+++ b/doc/index-files/index-2.html
@@ -2,10 +2,10 @@
-
+
B-Index
-
+
@@ -69,7 +69,7 @@
-
-
-
-
-
-A B C D E F G H I L M O P Q R S T U V
+A B C D E F G H I L M N O P Q R S T U V
G
@@ -127,13 +127,17 @@
Lista de estilos aplicable.
getColor() - Method in class cl.cromer.estructuras.Grafico.Destacados
-
+
+Devolver el color anterior antes que fue destacado.
+
getFondo() - Method in class cl.cromer.estructuras.Colores
Devolver el color del fondo actual.
getId() - Method in class cl.cromer.estructuras.Grafico.Destacados
-
+
+Devolver el ID de elemento destacado.
+
getIndice(int) - Method in class cl.cromer.estructuras.Array
Devolver el valor que está guardado en cada indice del array.
@@ -143,7 +147,9 @@
Devolver el valor que está en un indice de la cola.
getIndice() - Method in class cl.cromer.estructuras.HashItem
-
+
+Devolver el indice del elemento.
+
getIndice(int) - Method in class cl.cromer.estructuras.HashTable
Devolver el valor que está guardado en cada indice.
@@ -173,7 +179,9 @@
Devolver la llave.
getLlave() - Method in class cl.cromer.estructuras.HashItem
-
+
+Devolver la llave del elemento.
+
getMaxLength() - Method in class cl.cromer.estructuras.TextFieldLimited
Devolver la cantidad maxima si está asignado.
@@ -197,7 +205,9 @@
Devolver el puntero izquerda.
getSequentialTransition() - Method in class cl.cromer.estructuras.Grafico.Destacados
-
+
+Devolver la animación que es en uso con el elemento.
+
getSiguiente() - Method in interface cl.cromer.estructuras.Enlace
Devolver el siguente enlace.
@@ -219,7 +229,9 @@
Devolver el tipo.
getTipo() - Method in class cl.cromer.estructuras.Grafico.Destacados
-
+
+Devolver el tipo de elemento destacado.
+
getTipo() - Method in class cl.cromer.estructuras.ListaEnlazada
Devolver el tipo de lista.
@@ -232,8 +244,12 @@
Devolver el tipo de lista enlazada.
-getValor() - Method in class cl.cromer.estructuras.HashItem
+ getTipoString() - Method in class cl.cromer.estructuras.ListaEnlazdaController
+ getValor() - Method in class cl.cromer.estructuras.HashItem
+
+Devolver el valor del elemento.
+
grafico - Variable in class cl.cromer.estructuras.ArrayController
Grafico rectangulos.
@@ -267,7 +283,7 @@
Clase de elemento destacado.
- A B C D E F G H I L M O P Q R S T U V
+A B C D E F G H I L M N O P Q R S T U V
-
-
|