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
| // title: flood fill algorithm
// date: 2/1
// author: 羅崧瑋
#include<bits/stdc++.h>
#include<unistd.h> // terminal color font
using namespace std;
// matrix size
#define row 10
#define col 10
// 上,下,左,右
int nx[4]={0,1,0,-1};
int ny[4]={1,0,-1,0};
// pair type
typedef struct pair{
int x;
int y;
}pair_t;
void printa(int a[row][col]);
// (i,j) 起始位置
void floodfill(int a[row][col],int i,int j,int newc){
// 染色佇列
queue<pair_t> pos;
pos.push({i,j});
// 染色
while(!pos.empty()){
auto f=pos.front();
i=f.x;
j=f.y;
pos.pop();
// 邊界檢查 & 同色檢查
if(a[i][j]<0 || a[i][j]==newc) continue;
a[i][j]=newc;
printa(a);
for(int b=0;b<4;b++)
pos.push({i+nx[b],j+ny[b]});
}
}
void printa(int a[row][col]){
system("clear");
for(int i=0;i<row;i++){
for(int j=0;j<col;j++){
if(a[i][j]<0)
cout<<"\033[37;7m"<<setw(3)<<a[i][j]<<"\033[0m";
else if(a[i][j]==5)
cout<<"\033[34;7m"<<setw(3)<<a[i][j]<<"\033[0m";
else
cout<<setw(3)<<a[i][j];
}
cout<<"\n";
}
cout<<"\n";
usleep(200000);
}
int main() {
// matrix
int a[row][col]={{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1},
{-1, 0, 0, 0, 0, 0,-1, 0, 0,-1},
{-1, 0, 0, 0, 0, 0,-1, 0, 0,-1},
{-1, 0, 0,-1, 0, 0, 0,-1,-1,-1},
{-1, 0, 0,-1, 0, 0,-1, 0, 0,-1},
{-1, 0, 0,-1, 0, 0,-1, 0, 0,-1},
{-1, 0,-1,-1, 0,-1, 0, 0, 0,-1},
{-1, 0, 0, 0, 0, 0, 0, 0, 0,-1},
{-1, 0, 0, 0, 0, 0, 0, 0, 0,-1},
{-1,-1,-1,-1,-1,-1,-1,-1,-1,-1}};
floodfill(a,1,1,5);
cout<<"final :\n";
printa(a);
return 0;
}
|