Question d’entretien chez Amazon

The best implementation for a binary tree.

Réponse à la question d'entretien

Utilisateur anonyme

6 août 2013

In-order search. Because you just need to locate the root value, and then the left side of the root value is the left tree, and the right side of the root value is the right tree.