Added a more robust hightlight functionality.

Added Hash Tables.
Updated docs.
This commit is contained in:
Chris Cromer
2016-07-02 15:22:16 -04:00
parent 86108410d5
commit 94d34da973
107 changed files with 21731 additions and 23916 deletions

View File

@@ -12,6 +12,8 @@ tituloMerge=Merge
tituloListaEnlazadaSimple=Simple Linked List
tituloListaEnlazadaCircular=Circular Linked List
tituloListaEnlazadaDoble=Double Linked List
tituloTablaHash=Hash Table
estructuras=Structures
array=Array
arraySimple=Simple
@@ -63,6 +65,8 @@ peek=Peek
nuevo=New
paso=Step
correr=Run
llave=Key:
valor=Value:
arrayLleno=Value not inserted because array is full.
arrayValorExiste=Value already exists.
arrayNoEsta=Value does not exist.
@@ -81,4 +85,8 @@ pilaVacia=The stack is empty.
pilaNoValor=Please input a numeric value.
colaLlena=Value not inserted because the queue is full.
colaVacia=The queue is empty.
colaNoValor=Please input a numeric value.
colaNoValor=Please input a numeric value.
tablaHashLleno=Key not inserted because hash table is full.
tablaHashLlaveExiste=Key already exists.
tablaHashNoEsta=Key does not exist.
tablaHashNoLlave=Please input a key and a numeric value.

View File

@@ -12,6 +12,7 @@ tituloMerge=Merge
tituloListaEnlazadaSimple=Lista Enlazada Simple
tituloListaEnlazadaCircular=Lista Enlazada Circular
tituloListaEnlazadaDoble=Lista Enlazada Doble
tituloTablaHash=Tabla Hash
estructuras=Estructuras
array=Array
arraySimple=Simple
@@ -63,7 +64,9 @@ peek=Peek
nuevo=Nuevo
paso=Paso
correr=Correr
arrayLleno=Valor no fue insertado porque el array est\u00E1 lleno.
llave=Llave:
valor=Valor:
arrayLleno=El valor no fue insertado porque el array est\u00E1 lleno.
arrayValorExiste=El valor ya existe.
arrayNoEsta=El valor no existe.
arrayNoValor=Ingresar un valor num\u00E9rico por favor.
@@ -76,9 +79,13 @@ mergeYaOrdenado=El array ya est\u00E1 ordenado.
listaLlaveExiste=La llave ya existe.
listaNoEsta=La llave no existe.
listaNoValor=Ingresar una llave y valor num\u00E9ricos por favor.
pilaLlena=Valor no fue insertado porque la pila est\u00E1 llena.
pilaLlena=El valor no fue insertado porque la pila est\u00E1 llena.
pilaVacia=La pila est\u00E1 vac\u00EDa.
pilaNoValor=Ingresar un valor num\u00E9rico por favor.
colaLlena=Valor no fue insertado porque la cola est\u00E1 llena.
colaLlena=El valor no fue insertado porque la cola est\u00E1 llena.
colaVacia=La cola est\u00E1 vac\u00EDa.
colaNoValor=Ingresar un valor num\u00E9rico por favor.
colaNoValor=Ingresar un valor num\u00E9rico por favor.
tablaHashLleno=La llave no fue insertado porque la tabla hash est\u00E1 lleno.
tablaHashLlaveExiste=La llave ya existe.
tablaHashNoEsta=La llave no existe.
tablaHashNoLlave=Ingresar una llave y un valor num\u00E9rico por favor.