Vidyalelo
Data Structure · Q21

Linked Lists in Data Structures

Programming · Data Structure · question 21

Q21

What is the time complexity of merging two sorted linked lists into a single sorted linked list?

A.
O(1)
B.
O(n)
Answer
C.
O(n log n)
D.
O(n2)

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board