1 - Introduction

The role of visualization

When studying algorithms, the traditional approach is to describe them in a mathematical way. An alternative approach is based on algorithm visualization, defined as the use of images and illustrations to carry meaningful information about algorithms [2].
The process of visualizing an algorithm consists of choosing between different graphical elements, such as lines, circles and arrows, to visually represent the steps of the execution, playing in this way a key role in their understanding. Visualization can indeed have a crucial role in increasing the accessibility of intuitive understanding when teaching an algorithm, making it possible to rely on more than formalism when explaining a new concept.
For similar reasons, visualization is a powerful tool also for gaining a deeper understanding when studying individually, since implementing algorithm visualization can make it easier to focus on the details of the execution and sometimes even to discover unexpected behaviors in the implementation [28]. These two main applications for algorithm visualization can be summarized by two words: education and research [2].
Another important role of visualization, cited by Mike Bostock in a study of 2014 titled Visualizing Algorithms [28], is the mesmerizing effects of watching the execution of an algorithm, which often helps increasing the engagement with such an abstract topic.
There are two main ways to visualize algorithms. The first is static visualization, which shows the steps of the execution through a series of still images. The second is dynamic visualization (also referred as animation), that instead shows a continuous presentation in video or gif format [28].
Creating animations is for sure the more difficult option, but it is also the most effective in terms of conveying information about an algorithm.
The considerations about the importance of visualization, together with the desire to make the creation of algorithm animation more accessible, led to the development of our own library for visualizing algorithms on graphs. While working on the project, we kept in mind this discussion about the different roles of visualization and tried to develop a library that aims at these results.
This can be seen in particular in Section Path utilities, where we took this reasoning into account when implementing the functions that deal with the visualization of paths on graphs.
To obtain a result like the one shown in Figure 1.1, we allow the user to choose between different implementation options: for teaching purposes, one can decide to manually input the path to visualize, while one can also choose to refactor the actual algorithm in order to automatically produce the input for the function that deals with the visualization. See Section Path utilities for more details.

Figure 1.1 - Visualization of the execution of the depth-first search algorithm on a graph produced using ManimGraphLibrary (see Chapter 3).

Visualizing a thesis about visualization

Considering that this thesis is centered around algorithm animations, we believe that having it only in pdf format can make the presentation incomplete. In fact, in the static version of the thesis we were able to only insert frames taken from the animations produced using Manim.
This limitation led to the idea of creating this web page where to publish another version of the work, where the static images have been replaced with the full animations.