Dennis201503413 / myBlog

0 stars 0 forks source link

Graphviz | Dennis #18

Open Dennis201503413 opened 4 years ago

Dennis201503413 commented 4 years ago

https://dennismasaya.com/2019/08/07/Graphviz/

Graphviz

netuko13 commented 4 years ago

Graphviz is one of the indispensable tools for the data structure course.

The dot language is very complete, since it can be generated: directed, non-directed graphs, even sub-graphs of different styles and colors according to our needs!

Thanks to the hyperlinks that this post provides, I managed to investigate more about the use of the commands: rank and ranksame that are important when generating the sparse matrix.

This guide was very useful when generating my reports of: sparse matrix, AVL tree among others, since graphviz is a console tool, and it is not very intuitive when using it.

LuisPedroPineda commented 4 years ago

Excellent post!

Thanks to this publication I completed my university projects, the graphviz tool allowed me to better show each of the Data Structures that I made for the projects of the Data Structures course.

In this publication, the graphviz tool is presented in a simple way of understanding, making it easy to understand the basics. Very good explanation thanks for the help in each of the publications.

deathstroke021 commented 4 years ago

Graphviz is a very important tool, both the course of data structures and for other courses in the systems engineering career. The dot language is an indispensable language for every programmer.

This post is very useful and complete. It shows how install the tool and shows us part of the dot language, more specifically how to create the graph of a linked list.

Personally this post helped me to realize the reports of the practices and proyects of the course, I made the graphs of different data structures like a sparse matrix, doubly linked list, binary search tree and others.