Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9062607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T15:46:47+00:00 2026-06-16T15:46:47+00:00

I’m trying to apply the flood fill on a specific question. I’m having a

  • 0

I’m trying to apply the flood fill on a specific question. I’m having a hard time understanding how to create a variable with a help function so I keep it throughout all the recursion.
I’ve seen there is a thread about it though I don’t know how to apply it for my own use.

This is the code I wrote so far:

how do I create the k variable to stay the same?

public static int[][] fill(int[][] map, int i, int j, int color) {
    int[][] ans = null;

    if ((i<map.length)&&(i>0)&&(j<map.length)&&(j>0))
    {
        if ((k!=map[i][j]))
        {
            map[i][j]=color;    
        }
    }
    fill(map,i-1,j,color);
    fill(map,i+1,j,color);
    fill(map,i,j-1,color);
    fill(map,i,j+1,color);
    return ans;
}

public static void fill(int[][] map, int i, int j, int color,int k)

k=map[i][j] 

lets say this is my array:

4, 1, 2, 2
4, 4, 3, 1
1, 4, 4, 4

1, 4, 0, 2

and I wish to flood fill all the indexes that have the value of 4.
I wish k to obtain the value of 4 so I can use k to compare in each index.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T15:46:48+00:00Added an answer on June 16, 2026 at 3:46 pm

    Iמ Addition to your question i have noticed that your function wont work because you boundries checking, you are check if row or col are equal to the board length , its alright but you need to change it to <, and not <= . anyway you can use your code like that :

    public static int[][] fill(int[][] map, int i, int j, int color) {
    
        int origColor = map[i][j];
        fill(map, i, j, color, origColor);
    
    
        return map;
    
        }
    
    private static void fill(int[][] map, int i, int j,int color, int   origColor) {
    
    
    
        //checks if index is inside matrix and if the index is equal to original   number.
    
        if ((i<map.length)&&(i>=0)&&(j<map.length)&&(j>=0)&&(origColor==map[i][j]))
    
        {
    
        map[i][j]=color;
    
    
    
        //recursive call for north east west south.
    
        fill(map,i-1,j,color,origColor);
    
        fill(map,i+1,j,color,origColor);
    
        fill(map,i,j-1,color,origColor);
    
        fill(map,i,j+1,color,origColor);
        }
    
    
        }
     public static void printBoard(int[][] board) {
    if (board == null)
        System.out.println("null");
    else for (int i=0; i<board.length; i++) {
        if (board[i] == null)
            System.out.println("null");
        else
            for (int j=0; j<board[i].length; j++) 
                System.out.print(board[i][j]);
        System.out.println();
    }
    }
    

    for checking :

    fill(map,1,1,9);
        printBoard(map);
    

    Good Luck!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
I'm trying to create an if statement in PHP that prevents a single post
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am trying to understand how to use SyndicationItem to display feed which is
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I am trying to render a haml file in a javascript response like so:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.