forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flood_fill.java
150 lines (126 loc) · 2.49 KB
/
flood_fill.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
import java.util.Scanner;
import java.util.Arrays;
/**Flood Fill Class**/
public class FFill
{
/**Fill Grid Function**/
private void fGrid(char[][] a, int x, int y)
{
if (a[x][y] == 'X')
{
a[x][y] = 'W';
output(a);
fGrid(a, x + 1, y);
fGrid(a, x - 1, y);
fGrid(a, x, y + 1);
fGrid(a, x, y - 1);
}
}
/**Display Output of the program**/
private void output(char[][] a)
{
System.out.println("\nGrid : ");
for (int i = 1; i < a.length - 1; i++)
{
for (int j = 1; j < a[i].length - 1; j++)
System.out.print(a[i][j] +" ");
System.out.println();
}
}
/**Main Class Begain**/
public static void main(String[] args)
{
Scanner scan = new Scanner( System.in );
/**Input Dimensions**/
System.out.println("Enter dimensions: ");
int M = scan.nextInt();
int N = scan.nextInt();
char[][] array = new char[M + 2][N + 2];
for (int i = 0; i < M + 2; i++)
Arrays.fill(array[i], 'O');
System.out.println("Enter grid with 'X'=passage and 'Y'=obstacle");
for (int i = 1; i < M + 1; i++)
for (int j = 1; j < N + 1; j++)
array[i][j] = scan.next().charAt(0);
System.out.println("Enter coordinates: ");
int sx = scan.nextInt();
int sy = scan.nextInt();
if (array[sx][sy] != 'X')
{
System.out.println("Invalid coordinates!");
System.exit(0);
}
FFill ff = new FFill();
ff.fGrid(array, sx, sy);
}
/**End Main Function**/
}
/**
Sample Input output
Enter dimensions:
5 5
Enter grid with 'X'=passage and 'Y'=obstacle
X X X X X
Y X Y X Y
Y Y X X Y
X Y Y Y Y
X Y Y Y Y
Enter coordinates:
3 3
OUTPUT
Grid :
X X X X X
Y X Y X Y
Y Y W X Y
X Y Y Y Y
X Y Y Y Y
Grid :
X X X X X
Y X Y X Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X X X X X
Y X Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X X X W X
Y X Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X X X W W
Y X Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X X W W W
Y X Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X W W W W
Y X Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
X W W W W
Y W Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Grid :
W W W W W
Y W Y W Y
Y Y W W Y
X Y Y Y Y
X Y Y Y Y
Time Complexity= O(N^2)
**/