Question: What is the time complexity of enqueueing an element in a queue implemented with a linked list?
Options:
Correct Answer: O(1)
Solution:
Enqueueing an element in a queue implemented with a linked list is done in constant time, O(1), by adding the element to the end of the list.