Microsoft Interview Question

Reverse words in string

Interview Answer

Anonymous

Sep 28, 2011

Another method is to part the words in the string from start to end and push each one onto a stack. Then pop all of the words from the stack and reconstruct the string.