Question d’entretien chez Anduril

Convert a binary search tree to an In Order Linked List.

Réponse à la question d'entretien

Utilisateur anonyme

9 oct. 2022

Recursive traversal into a doubly linked list is the most straightforward solution. Make sure to write tests.