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