CrowdStrike Interview Question

Q: implement a queue without using any STL libraries. Provide 2 different ways (using different data structures)

Interview Answer

Anonymous

Jan 30, 2023

Linked list, cyclic array.

2