Labyrinth/include/binaryTree.h

9 lines
154 B
C
Raw Normal View History

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