Question d’entretien chez Google

Reverse an sequence, or array

Réponse à la question d'entretien

Utilisateur anonyme

10 sept. 2010

1. Swap elements from two ends till the middle element is reached. 2. Use an outer stack as buffer. 3. If the sequence is represented as a linked list, we can also manipulate the pointers of the nodes to reverse the direction.