0 0 votes The best case time complexity to merge two sorted file of size m and n is A. O(m) B. O(n) C. O(MIN{m,n}) D. O(m+n) Algorithms time-complexity merge-sort + – mystylecse 873 views answer comment Share Follow Print See 1 comment 1 1 comment reply saxena0612 commented Oct 5, 2017 reply Follow flag D) O(m+n) seems correct ! 0 0 replyShare Please log in or register to add a comment.
1 1 vote using Merge algo we can merge two sorted files in O(m+n); Nitesh Choudhary answered Oct 5, 2017 Nitesh Choudhary comment Share Follow 0 reply Please log in or register to add a comment.