This software implementation can graph in SVG format the next data structures:
- List: NameOfClass
Lista - Queue: NameOfClass
Cola - Stack: NameOfClass
Pila - Binary Tree:
1.- Complete Binary Tree (NameOfClass
ArbolBinarioCompleto). 2.- Ordered Binary Tree (NameOfClassArbolBinarioOrdenado). 3.- Red-black Binary Tree (NameOfClassArbolRojinegro). 4.- AVL Binary Tree (NameOfClassArbolAVL). - Graph: NameOfClass
Grafica
Ensure have java 11 + version and maven, you can try:
mvn installthenjava -jar target/Proyecto2.jar NameOfClass N > file.svgor input formcat file.txt | java -jar target/Proyecto2.jar > file.svgwhere "N" are a set`s integers like " 1 23 4 12 10 8 ..."



