Microsoft interview question

Implement a queue using a circular data structure. Provide put and get functions. Also talked about how to provide thread safety.

Interview Answer

Anonymous

4 Jan 2013

Used linked list with head and tail pointers.