Skip to content
Snippets Groups Projects
Commit 79c4a814 authored by florian.burgener's avatar florian.burgener
Browse files

Validation exercice 4

parent 6b00b587
Branches
No related tags found
No related merge requests found
...@@ -201,6 +201,12 @@ Matrix *quadtree_to_matrix(Node *root) { ...@@ -201,6 +201,12 @@ Matrix *quadtree_to_matrix(Node *root) {
// --- // ---
/**
* @brief Clone a Quadtree.
*
* @param root
* @return Node*
*/
Node *clone(Node *root) { Node *clone(Node *root) {
if (root == NULL) { if (root == NULL) {
return NULL; return NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment