#Queue
2 articles
Algorithms and Data Structures
2023-07-25
Implementation of Stack and Queue
Implement stack and queue data structures in Go with linked lists and slices for O(1) operations and optimal performance.
#Stack#Queue
Algorithms and Data Structures
2019-11-17
Algorithms and Data Structures - Queue
Learn how the Queue (FIFO) data structure works. Covers enqueue and dequeue operations, time complexity compared to stacks, and a Go implementation.
#Queue