Question d’entretien chez Google

Given a tree and leaf node, write the code to make the leaf node as root of tree.

Réponse à la question d'entretien

Utilisateur anonyme

1 août 2013

Just reverse all links on the path from root to that leaf node

2