Finished graphics for undirected graph.

Este commit está contenido en:
Chris Cromer
2016-07-07 16:50:27 -04:00
padre f04ca20a26
commit d1b53ba645
Se han modificado 5 ficheros con 195 adiciones y 34 borrados

Ver fichero

@@ -13,8 +13,8 @@ tituloListaEnlazadaSimple=Simple Linked List
tituloListaEnlazadaCircular=Circular Linked List
tituloListaEnlazadaDoble=Double Linked List
tituloArbolGeneral=General Tree
tituloGrafoDirigido=Grafo Dirigido
tituloGrafoNoDirigido=Grafo No Dirigido
tituloGrafoDirigido=Directed Graph
tituloGrafoNoDirigido=Undirected Graph
tituloTablaHash=Hash Table
estructuras=Structures
@@ -96,9 +96,11 @@ arbolNoValor=Please input a numeric value.
grafoNodos=Nodos:
grafoEdges=Edges:
grafoLleno=Node not inserted because of a maxium of 5 nodes in this implementation.
grafoNodoExiste=Node alredy exists.
grafoNoEsta=Node does not exist.
grafoNoNodo=Please input a numeric node number.
grafoNodoExiste=Node already exists.
grafoEdgeExiste=Edge already exists.
grafoNoNodo=Node does not exist.
grafoNoEdge=Edge does not exist.
grafoNoNumero=Please input a numeric node number.
tablaHashLleno=Key not inserted because the hash table is full.
tablaHashLlaveExiste=Key already exists.

Ver fichero

@@ -96,8 +96,10 @@ grafoNodos=Nodos:
grafoEdges=Edges:
grafoLleno=El nodo no fue insertado porque esta implementaci\u00F3n tiene un maxiumo de 5 nodos.
grafoNodoExiste=El nodo ya existe.
grafoNoEsta=El nodo no existe.
grafoNoNodo=Ingresar una llave y un valor num\u00E9rico por favor.
grafoEdgeExiste=El edge ya existe.
grafoNoNodo=El nodo no existe.
grafoNoEdge=El edge no existe.
grafoNoNumero=Ingresar un nodo num\u00E9rico por favor.
tablaHashLleno=La llave no fue insertado porque la tabla hash est\u00E1 lleno.
tablaHashLlaveExiste=La llave ya existe.