file management

This commit is contained in:
DarianTr
2023-11-16 16:03:51 +01:00
parent fbb278c5d9
commit d5d9994f18
6 changed files with 140 additions and 164 deletions

View File

@@ -0,0 +1,12 @@
Graph g;
ArrayList<int[]> edges;
boolean[] vis;
void setup() {
size(1000, 1000);
frameRate(60);
background(255);
test();
edges = bfs(0, 6);
}