Merge sort is preferred for arrays over linked lists.
Merge sort is preferred for arrays over linked lists. Correct Answer false
Merge sort is preferred for linked list over arrays. It is because in a linked list the insert operation takes only O(1) time and space which implies that we can implement merge operation in constant time.