Skip to content

Instantly share code, notes, and snippets.

@Aschen
Created May 11, 2016 11:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aschen/51e9b2449b895b8d717f9dd36a8400b5 to your computer and use it in GitHub Desktop.
Save Aschen/51e9b2449b895b8d717f9dd36a8400b5 to your computer and use it in GitHub Desktop.
Afficher Arbre
void dumpTree(int depth = 1, String indentation = "")
{
if (this->is_leaf)
{
System.out.println(indentation + "Node");
}
else
{
this->childrens[0].dumpTree(depth + 1, indentation + " ");
this->childrens[1].dumpTree(depth + 1, indentation + " ");
System.out.println(indentation + "Node" + depth);
this->childrens[2].dumpTree(depth + 1, indentation + " ");
this->childrens[3].dumpTree(depth + 1, indentation + " ");
}
}
On parcours récursivement l'arbre en commençant par le noeud le plus à gauche. Le noeud étant le plus profond aura la plus grande indentation.
En gros ça donne ça :
tree.dumpTree()
Node3
Node3
Node2
Node3
Node3
Node2
Node1
Node2
Node2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment