Tagged Questions

7
votes
7answers
4k views

does anyone have a working non-recursive floodfill algorithm written in C?

over the last few days I've been desperately trying to find a working floodfill algorithm. Of the many algorithms i've tried only the 'recursive line fill' one behaves exactly as it should with the ...
2
votes
1answer
479 views

argh! what is wrong with this floodfill algorithm?

I have been using a floodfill algorithm of the stack-based non-recursive variety and it seems to work perfectly except for one annoying situation: if use a line to cut an image in half and then ...
1
vote
2answers
2k views

Flood fill algorithm

im working in a simple graphical library in C with turbo C++ because im developing a very primitive version of a paint style program, everyting works well but i can“t get the flood fill algorithm to ...