Labyrinth/include/depthFirst.h

9 lines
154 B
C
Raw Permalink Normal View History

2023-04-20 13:16:53 +02:00
#ifndef DEPTH_FIRST_H
#define DEPTH_FIRST_H
#include "labyrinth.h"
Labyrinth* depthFirst(int n, int m);
Labyrinth* depthFirstShow(int n, int m);
#endif