`` VisuAlgo '' that can understand algorithms and programming visually at once



Visualization

is very effective for understanding the algorithm, and the same goes for understanding the visualization of the program. So, as the understanding of algorithms and programming progresses, the “ VisuAlgo ” service that allows you to learn algorithms and programming simultaneously by visualizing the program code that describes the algorithm at once is released.

VisuAlgo-visualizing data structures and algorithms through animation
https://visualgo.net/en

Try visualizing the basic algorithm ' bubble sort ' of the sorting algorithm on the above VisuAlgo site. Click “bubble” in “Sorting”.



After confirming that “bubble” is displayed under the search window, click the “Sorting” image.



Then, the image that the number became a bar graph appeared. Click “Create” in the lower left corner ...



'Random', 'Sorted', and 'Nearly Sorted' buttons are displayed. The previous bar graph is arranged in Random (random). By clicking “Sorted” “Nearly Sorted”, the bar graph can be sorted by specifying conditions such as ascending / descending.



This time, we will rearrange the random numbers (bar graph), so click Random in the order of “Sort” → “GO”.



Then, the program code is displayed at the bottom right of the screen, and the bar graph is rearranged according to the bubble sort algorithm. Since the executed part of the program, such as the for statement and if statement, is displayed in black, it is obvious at a glance what function the program code performs in the algorithm.

Visualizing the bubble sort program with VisuAlgo looks like this-YouTube


In addition to “Sorting”, VisuAlgo includes “Bitmask”, “Linked List, Stack, Queue, Deque”, “Binary Serch Tree, AVL Tree”, “Binary Heap”, “Graph Data Structures” ……



“Union-Find Disjoint Sets” “Segment Tree” “Binary Indexed Tree” “Generic Recursion Tree / DAG” “Graph Traversal” “Minimum Spanning Tree” ……



You can visualize various algorithms and data structure programs such as “Single-Source Shortest Paths”, “Network Flow”, “Graph Matching”, “Suffix Tree”, “Suffix Array”, and “(Computational) Geometry”.



VisuAlgo is a network service that was developed by Professor Steven Harim of the National University of Singapore in 2011 to help students understand data structures and algorithms, and learned algorithms, data structures, and programming on the Internet. It is an ideal teaching material for people.

in Software,   Web Service,   Video,   Design, Posted by darkhorse_log