Pergunta de entrevista da empresa Morgan Stanley

How to reverse a string in place.

Resposta da entrevista

Sigiloso

23 de out. de 2012

Just have two indexes --- one from the start of the string, and one from the end of the string. Move each index inwards towards the middle of the string, swapping the elements as you go. Runs in O(n) time. i