Quiz

It's quiz time! Test yourself by solving these questions about circular linked lists.

We'll cover the following...
Technical Quiz
1.

Given that you have access to the head node of a circular linked list containing nn elements, what is the time complexity to search for an element?

A.

O(1)O(1)

B.

O(logn)O(log n)

C.

O(n)O(n)

D.

O(n2)O(n^2)


1 / 5