Question: What is the time complexity of deleting an element from a queue implemented using a linked list?
Options:
Correct Answer: O(1)
Solution:
Deleting an element from the front of a queue implemented with a linked list is done in constant time, O(1).