Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 445 Bytes

README.md

File metadata and controls

8 lines (8 loc) · 445 Bytes

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.