-
Notifications
You must be signed in to change notification settings - Fork 94
adding the Flood fill in Java and CPP #211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
prem043m
wants to merge
5
commits into
sachith-1:main
Choose a base branch
from
prem043m:flood-fill
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+125
−0
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
e1d70bc
adding the Flood fill in Java and CPP
prem043m a0cd4e8
fixed algorithm
prem043m 92c0813
removed the bytecode file and class file
prem043m 639d156
Update C++/FloodFillDFS.cpp
prem043m 7036dd0
Update java/FloodFillDFS.java
prem043m File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| { | ||
| "tasks": [ | ||
| { | ||
| "type": "cppbuild", | ||
| "label": "C/C++: g++.exe build active file", | ||
| "command": "C:\\MinGW\\bin\\g++.exe", | ||
| "args": [ | ||
| "-fdiagnostics-color=always", | ||
| "-g", | ||
| "${file}", | ||
| "-o", | ||
| "${fileDirname}\\${fileBasenameNoExtension}.exe" | ||
| ], | ||
| "options": { | ||
| "cwd": "${fileDirname}" | ||
| }, | ||
| "problemMatcher": [ | ||
| "$gcc" | ||
| ], | ||
| "group": { | ||
| "kind": "build", | ||
| "isDefault": true | ||
| }, | ||
| "detail": "Task generated by Debugger." | ||
| } | ||
| ], | ||
| "version": "2.0.0" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| #include <iostream> | ||
| #include <vector> | ||
| using namespace std; | ||
|
|
||
| class FloodFillDFS { | ||
| public: | ||
| void floodFill(vector<vector<int>>& image, int sr, int sc, int newColor) { | ||
prem043m marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| int oldColor = image[sr][sc]; | ||
| if (oldColor == newColor) return; | ||
| dfs(image, sr, sc, oldColor, newColor); | ||
| } | ||
|
|
||
| void dfs(vector<vector<int>>& image, int r, int c, int oldColor, int newColor) { | ||
| // Boundary check | ||
| if (r < 0 || c < 0 || r >= static_cast<int>(image.size()) || c >= static_cast<int>(image[0].size())) | ||
| return; | ||
|
|
||
| // Stop if color does not match | ||
| if (image[r][c] != oldColor) | ||
| return; | ||
|
|
||
| // Replace color | ||
| image[r][c] = newColor; | ||
|
|
||
| // Explore neighbors | ||
| dfs(image, r + 1, c, oldColor, newColor); | ||
| dfs(image, r - 1, c, oldColor, newColor); | ||
| dfs(image, r, c + 1, oldColor, newColor); | ||
| dfs(image, r, c - 1, oldColor, newColor); | ||
| } | ||
| }; | ||
|
|
||
| int main() { | ||
| vector<vector<int>> image = { | ||
| {1, 1, 1}, | ||
| {1, 1, 0}, | ||
| {1, 0, 1} | ||
| }; | ||
|
|
||
| FloodFillDFS solver; | ||
| solver.floodFill(image, 1, 1, 2); | ||
|
|
||
| // Print output | ||
| for (auto& row : image) { | ||
| for (int val : row) { | ||
| cout << val << " "; | ||
| } | ||
| cout << endl; | ||
| } | ||
|
|
||
| return 0; | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ## Flood Fill Algorithm (LeetCode 733) | ||
|
|
||
| - Uses DFS to fill connected cells of the same color. | ||
| - Time: O(R × C) | ||
| - Space: O(R × C) | ||
prem043m marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| public final class FloodFillDFS { | ||
|
|
||
| private FloodFillDFS() { | ||
| // Utility class; prevent instantiation. | ||
| } | ||
| public static void main(String[] args) { | ||
| int[][] image = { | ||
| {1, 1, 1}, | ||
| {1, 1, 0}, | ||
| {1, 0, 1} | ||
| }; | ||
|
|
||
| floodFill(image, 1, 1, 2); | ||
|
|
||
| for (int[] row : image) { | ||
| for (int val : row) { | ||
| System.out.print(val + " "); | ||
| } | ||
| System.out.println(); | ||
| } | ||
| } | ||
|
|
||
| static void floodFill(int[][] image, int sr, int sc, int newColor) { | ||
prem043m marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| int oldColor = image[sr][sc]; | ||
| if (oldColor == newColor) return; | ||
| dfs(image, sr, sc, oldColor, newColor); | ||
| } | ||
|
|
||
| static void dfs(int[][] image, int r, int c, int oldColor, int newColor) { | ||
| if (r < 0 || c < 0 || r >= image.length || c >= image[0].length) return; | ||
| if (image[r][c] != oldColor) return; | ||
|
|
||
| image[r][c] = newColor; | ||
|
|
||
| dfs(image, r + 1, c, oldColor, newColor); | ||
| dfs(image, r - 1, c, oldColor, newColor); | ||
| dfs(image, r, c + 1, oldColor, newColor); | ||
| dfs(image, r, c - 1, oldColor, newColor); | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.