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

Jan 4, 2013

Used linked list with head and tail pointers.