Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AlexandreCantin/5f64cc5e8c889cdb06d14261e1aa96a2 to your computer and use it in GitHub Desktop.
Save AlexandreCantin/5f64cc5e8c889cdb06d14261e1aa96a2 to your computer and use it in GitHub Desktop.
// Noeud droite avant le gauche
if(node.right) nodeStructure.saveNode(node.right)
if(node.left) nodeStructure.saveNode(node.left)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment