CrowdStrike interview question

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

Interview Answer

Anonymous

30 Jan 2023

Linked list, cyclic array.

2