An open API service indexing awesome lists of open source software.

https://github.com/deepakjha01/flood-fill-visualizer

This is a Flood-Fill Algorithm Visualizer. This algorithm is mainly used to determine the bounded area connected to a given node in a multi-dimensional array.
https://github.com/deepakjha01/flood-fill-visualizer

flood-fill flood-fill-algorithm floodfill python3 tkinter tkinter-gui visualization

Last synced: about 1 month ago
JSON representation

This is a Flood-Fill Algorithm Visualizer. This algorithm is mainly used to determine the bounded area connected to a given node in a multi-dimensional array.

Awesome Lists containing this project

README

        

# FloodFillVisualizer
This is a Flood-Fill Algorithm Visualizer. This algorithm is mainly used to determine the bounded area connected to a given node in a multi-dimensional array.

In this project, this algorithm is used to fill color inside an area surrounded with multi-color boundary.

Flood-Fill Algorithm has two approaches

1. 4 connected approach

2. 8 connected approach


Here, 4 connected approach is implemented here.