What is the time complexity of searching for a specific element in a singly linked list of size 'n'?
O(n)
O(log n)
O(1)
O(n^2)

Computer Science Exercises are loading ...