Question d’entretien chez Meta

Make a binary tree in order iterator

Réponse à la question d'entretien

Utilisateur anonyme

8 oct. 2016

Use a stack, each point add left node till you see a null, at each pop, add the right node of the popped node and recurse left.