13 lines
154 B
Plaintext
13 lines
154 B
Plaintext
Graph g;
|
|
ArrayList<int[]> edges;
|
|
boolean[] vis;
|
|
|
|
|
|
void setup() {
|
|
size(1000, 1000);
|
|
frameRate(60);
|
|
background(255);
|
|
test();
|
|
edges = bfs(0, 6);
|
|
}
|