Microsoft interview question

Reverse words in string

Interview Answer

Anonymous

28 Sept 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.