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.
- Host: GitHub
- URL: https://github.com/deepakjha01/flood-fill-visualizer
- Owner: DeepakJha01
- Created: 2020-05-25T07:30:47.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-03T06:53:13.000Z (about 5 years ago)
- Last Synced: 2025-04-08T20:48:08.227Z (2 months ago)
- Topics: flood-fill, flood-fill-algorithm, floodfill, python3, tkinter, tkinter-gui, visualization
- Language: Python
- Size: 154 KB
- Stars: 8
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.