Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What is the time complexity of searching for an element in a circular linked list?

a) O(n)
b) O(nlogn)
c) O(1)
d) O(n2)

Answer: a
Explanation: In the worst case, you have to traverse through the entire list of n elements.

Join The Discussion