Question: What is the time complexity of enqueue and dequeue operations in a queue implemented with a linked list?
Options:
Correct Answer: O(1)
Solution:
Both enqueue and dequeue operations can be performed in constant time, O(1), when using a linked list.