Please enable JavaScript.
Coggle requires JavaScript to display documents.
vxx, Characters
Characters to use to show a formatted
output,…
vxx
data structure visualizer
The idea behind this visualizer is that it will
write algorithm's steps that the algorithm
took to obtain the result in a file, then that
file will be used by the visualising screen
facility to render formatted steps
array
rotation
In order to visualize sorting in array
we will be using pointers showing how the
algorithm progress
-
-
-
searching
In order to visualize searching in array
we will be using pointers showing how the
algorithm progress
-
-
-
-
-
-
-
-
-
algorithm implementation
The idea is that this implementation
will have some internal calls calling
the data structure visualizer at each step
-
-
-
visualising screen
input from file
Visualising screen before displaying any data
to the console will read input from the temporary
file that was created to store the algorithm's steps.
output to stdout
Visualising screen will read data from
the temporary file that was created to
store the algorithm's implementation and
then it will dump the data out in the console
up to a certain column number. That column
number can be altered for every row if the user presses up, down, left or right arrow keys.
This is inspired from the famous version control
system git's log style.