In the worst-case scenario, what is the time complexity of searching for an element in a hash table using chaining?
O(n)
O(log n)
O(1)
O(n^2)

Computer Science Exercises are loading ...