Consider the singly linked list. What is the worst case time complexity of the best-known algorithm to delete the node, a pointer to this node is q, from the list?
Options:
O(n logn)
O(log n)
O(1)
O(n)
Answers
Answered by
4
Answer:
Log n
Explanation:
Similar questions